diff options
author | Daniel Kolesa <d.kolesa@samsung.com> | 2014-08-07 22:41:22 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@samsung.com> | 2014-08-07 22:41:22 +0100 |
commit | 236cdce358bee45bd5b0808b7efc9d9017bec3ba (patch) | |
tree | 228bda9e02dd297ddcc7ab35fc74fb49c631f15e /configure.ac | |
parent | fd3f5f4615b84ae6f8427160017a2019bb4f7ba5 (diff) |
autotools: install .pc files to the correct directory on FreeBSD
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f1a2e3374f..51ffe927f4 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -187,6 +187,7 @@ AC_SUBST(EFL_VERSION_MINOR) | |||
187 | have_systemd_pkg="no" | 187 | have_systemd_pkg="no" |
188 | have_win32="no" | 188 | have_win32="no" |
189 | have_windows="no" | 189 | have_windows="no" |
190 | have_freebsd="no" | ||
190 | have_darwin="no" | 191 | have_darwin="no" |
191 | have_linux="no" | 192 | have_linux="no" |
192 | have_ps3="no" | 193 | have_ps3="no" |
@@ -197,6 +198,9 @@ case "$host_os" in | |||
197 | have_windows="yes" | 198 | have_windows="yes" |
198 | EFL_CFLAGS="${EFL_CFLAGS} -D__USE_MINGW_ANSI_STDIO" | 199 | EFL_CFLAGS="${EFL_CFLAGS} -D__USE_MINGW_ANSI_STDIO" |
199 | ;; | 200 | ;; |
201 | freebsd*) | ||
202 | have_freebsd="yes" | ||
203 | ;; | ||
200 | darwin*) | 204 | darwin*) |
201 | have_darwin="yes" | 205 | have_darwin="yes" |
202 | ;; | 206 | ;; |
@@ -221,6 +225,7 @@ AM_CONDITIONAL([HAVE_WIN32], [test "x${have_win32}" = "xyes"]) | |||
221 | AM_CONDITIONAL([HAVE_WINDOWS], [test "x${have_windows}" = "xyes"]) | 225 | AM_CONDITIONAL([HAVE_WINDOWS], [test "x${have_windows}" = "xyes"]) |
222 | AM_CONDITIONAL([HAVE_PS3], [test "x${have_ps3}" = "xyes"]) | 226 | AM_CONDITIONAL([HAVE_PS3], [test "x${have_ps3}" = "xyes"]) |
223 | 227 | ||
228 | AM_CONDITIONAL([HAVE_FREEBSD], [test "x${have_freebsd}" = "xyes"]) | ||
224 | AM_CONDITIONAL([HAVE_OSX], [test "x${have_darwin}" = "xyes"]) | 229 | AM_CONDITIONAL([HAVE_OSX], [test "x${have_darwin}" = "xyes"]) |
225 | AM_CONDITIONAL([HAVE_X86_64], [test "x${host_cpu}" = "xx86_64"]) | 230 | AM_CONDITIONAL([HAVE_X86_64], [test "x${host_cpu}" = "xx86_64"]) |
226 | 231 | ||