diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-07-08 17:14:26 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-07-08 17:14:26 +0200 |
commit | 3b2fe57c7d7bf7ecc1e19d112f7ddd63b0eb7139 (patch) | |
tree | 7c6cf8ae63d836b290942ef18d121483cf2eca18 /configure | |
parent | typo + grammaro (diff) | |
download | libgamma-3b2fe57c7d7bf7ecc1e19d112f7ddd63b0eb7139.tar.gz libgamma-3b2fe57c7d7bf7ecc1e19d112f7ddd63b0eb7139.tar.bz2 libgamma-3b2fe57c7d7bf7ecc1e19d112f7ddd63b0eb7139.tar.xz |
misc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -36,10 +36,12 @@ for arg in "$@"; do enable_drm=1 fake_w32gdi=1 fake_quartz=1 + os=gnu ;; (--linux) enable_vidmode=1 enable_randr=1 enable_drm=1 + os=gnu ;; (--*bsd=developer) enable_debug=1 enable_dummy=1 @@ -176,10 +178,14 @@ if [ ${fake_quartz} = 1 ]; then fi if [ ${os} = w32 ]; then echo 'SO = dll' >&3 + echo 'PIC = ' >&3 + echo 'SHARED = -mdll' >&3 elif [ ${os} = os ]; then - echo 'SO = dylib' >&3n + echo 'SO = dylib' >&3 echo 'SHARED = -dynamiclib' >&3 echo 'LDSO = ' >&3 +elif [ ${os} = gnu ]; then + echo 'HAVE_INT128 = y' >&3 fi echo >&4 |