diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-09-22 18:54:03 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-09-22 18:54:03 +0000 |
commit | ee9ee30c4baf2210be800dc2c642ed8002f17130 (patch) | |
tree | 75a7a2fa7498aa012b57d9c5b2f876ce0b9e7094 /configure.in | |
parent | 161dd0c26d69f29a28130db6831ff6c1ac5d6f95 (diff) | |
download | pango-ee9ee30c4baf2210be800dc2c642ed8002f17130.tar.gz |
Bug 357228 – Remove aix specific hack from configure.in
2006-09-22 Behdad Esfahbod <behdad@gnome.org>
Bug 357228 – Remove aix specific hack from configure.in
* configure.in: Remove hack added back 2002 that is not required
anymore.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 161505df..71b66cb0 100644 --- a/configure.in +++ b/configure.in @@ -600,9 +600,8 @@ dnl * See whether we need to load our modules as .la files * dnl ******************************************************** use_la_modules=false -case $host in - *-aix*) use_la_modules=true -esac + +# is there any platform that we have to use .la files? if $use_la_modules ; then AC_DEFINE(USE_LA_MODULES, 1, [Whether to load modules via .la files rather than directly]) |