~ubuntu-branches/ubuntu/feisty/syslog-ng/feisty-security

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): SZALAY Attila
  • Date: 2006-11-17 09:37:45 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20061117093745-5no9gnsa443j48v2
Tags: upstream-2.0.0
ImportĀ upstreamĀ versionĀ 2.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        LD_START_STATIC="-Wl,-Bstatic"
75
75
        LD_END_STATIC="-Wl,-Bdynamic"
76
76
        AC_MSG_RESULT(GNU or Solaris)
77
 
elif test $ostype == "HP-UX" > /dev/null; then
 
77
elif test $ostype = "HP-UX" > /dev/null; then
78
78
        LD_START_STATIC="-a archive"
79
79
        LD_END_STATIC="-a shared_archive"
80
80
        AC_MSG_RESULT(HP-UX)
81
 
elif test "$ostype" == "AIX"; then
 
81
elif test "$ostype" = "AIX"; then
82
82
        LD_START_STATIC="-Wl,-bstatic"
83
83
        LD_END_STATIC="-Wl,-bdynamic"
84
84
        AC_MSG_RESULT(AIX)
194
194
PKG_CHECK_MODULES(EVTLOG, eventlog,,)
195
195
 
196
196
old_LIBS=$LIBS
197
 
LIBS="-static $GLIB_LIBS"
 
197
LIBS="$LD_START_STATIC $GLIB_LIBS $LD_END_STATIC"
 
198
 
198
199
AC_CACHE_CHECK(for static GLib libraries,
199
200
               blb_cv_static_glib,
200
201
[AC_TRY_LINK([], [
251
252
 
252
253
AC_OUTPUT(dist.conf
253
254
          Makefile 
 
255
          syslog-ng.spec.bb
254
256
          src/Makefile 
255
257
          doc/Makefile
256
258
          doc/docvars.xml
257
259
          contrib/Makefile
258
260
          tests/Makefile 
 
261
          solbuild/Makefile 
259
262
          tests/unit/Makefile
260
 
          tests/functional/Makefile)
 
263
          tests/functional/Makefile
 
264
          )