~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2008-08-15 21:21:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080815212140-05fhxj8wroosysmj
Tags: 2008.08.08-109361-1ubuntu1
* Merge from Debian unstable (LP: #258393), remaining Ubuntu change:
  - add ubuntu_toolchain_FTBFS.dpatch patch, fix FTBFS
* Update ubuntu_toolchain_FTBFS.dpatch patch for the new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
# $CUSTOM_GTK_LIBS - link-time flags to find and link the Gtk libraries.
27
27
# $CUSTOM_PROCPS_CPPFLAGS - compile-time flags to find procps headers
28
28
# $CUSTOM_PROCPS_LIBS - link-time flags to find and link the procps library.
 
29
# $CUSTOM_URIPARSER_CPPFLAGS - compile-time flags to find the uriparser headers
 
30
# $CUSTOM_URIPARSER_LIBS - link-time flags to find and link the uriparser library
 
31
# $CUSTOM_ZLIB_CPPFLAGS - compile-time flags to find the zlib headers
 
32
# $CUSTOM_ZLIB_LIBS - link-time flags to find and link the zlib library
29
33
################################################################################
30
34
 
31
35
###
34
38
 
35
39
AC_INIT(
36
40
   [open-vm-tools],
37
 
   [2008.06.03-96374],
 
41
   [2008.08.08-109361],
38
42
   [open-vm-tools-devel@lists.sourceforge.net])
39
43
 
40
44
# In order to make this configure script auto-detect situations where
74
78
      ;;
75
79
esac
76
80
 
 
81
# Kernel args
 
82
# The kernel args have to go here otherwise the KERNEL_RELEASE won't be visible
 
83
# to getOsVersion()
 
84
AC_ARG_WITH([kernel-modules],
 
85
            [AS_HELP_STRING([--without-kernel-modules],
 
86
                [Do not compile or install the kernel modules])],
 
87
            [],
 
88
            [with_kernel_modules=yes])
 
89
 
 
90
AC_ARG_WITH([kernel-release],
 
91
            [AS_HELP_STRING([--with-kernel-release],
 
92
                [Specify the kernel release you want to build against])],
 
93
            [KERNEL_RELEASE="$withval"],
 
94
            [KERNEL_RELEASE=`uname -r`])
 
95
 
 
96
AC_ARG_WITH([linuxdir],
 
97
            [AS_HELP_STRING([--with-linuxdir],
 
98
                [Specify the Linux directory you want to use])],
 
99
            [LINUXDIR="$withval"],
 
100
            [LINUXDIR=/lib/modules/$KERNEL_RELEASE])
 
101
 
77
102
# Turn the uname output into something we can run comparisons on.
78
103
getOsVersion() {
79
 
   major_version="`uname -r | cut -f1 -d. | cut -f1 -d-`"
80
 
   minor_version="`uname -r | cut -f2 -d. | cut -f1 -d-`"
81
 
   micro_version="`uname -r | cut -f3 -d. | cut -f1 -d-`"
 
104
   major_version="`echo $KERNEL_RELEASE | cut -f1 -d. | cut -f1 -d-`"
 
105
   minor_version="`echo $KERNEL_RELEASE | cut -f2 -d. | cut -f1 -d-`"
 
106
   micro_version="`echo $KERNEL_RELEASE | cut -f3 -d. | cut -f1 -d-`"
82
107
   printf '%02d%02d%03d' $major_version $minor_version $micro_version
83
108
}
84
109
 
97
122
      ;;
98
123
esac
99
124
osVersion="`getOsVersion`"
 
125
if test "$os" = "linux"; then
 
126
   if test "$with_kernel_modules" = "yes"; then
 
127
      if test ! -d "$LINUXDIR/kernel/"; then
 
128
         AC_MSG_ERROR([$LINUXDIR/kernel does not exist])
 
129
      fi
 
130
   fi
 
131
fi
100
132
 
 
133
# Arguments for disabling individual open-vm-tools features.
101
134
AC_ARG_ENABLE(
102
135
   multimon,
103
136
   AS_HELP_STRING(
104
137
      [--disable-multimon],
105
138
      [Disables multimon, enabled by default]),
106
 
   [MULTIMON_ENABLED="$enableval"],
107
 
   [MULTIMON_ENABLED="yes"])
 
139
   [enable_multimon="$enableval"],
 
140
   [enable_multimon="yes"])
 
141
 
 
142
AC_ARG_ENABLE(
 
143
   unity,
 
144
   AS_HELP_STRING(
 
145
      [--disable-unity],
 
146
      [Disables Unity, enabled by default]),
 
147
   [enable_unity="$enableval"],
 
148
   [enable_unity="yes"])
108
149
 
109
150
AM_INIT_AUTOMAKE
110
151
 
128
169
###
129
170
### Programs
130
171
###
 
172
# Compiler and preprocessor
131
173
AC_PROG_CPP
132
174
AC_PROG_CC
 
175
 
 
176
# This allows features like per-target compiler flags.  I.e., you can compile
 
177
# one copy of the same sources twice with different flags.  (See lib/guestApp
 
178
# for an example.)
 
179
AM_PROG_CC_C_O
 
180
 
 
181
# Needed for the various install and uninstall hooks.
133
182
AC_PROG_INSTALL
 
183
AC_PROG_SED
 
184
AC_PROG_LN_S
 
185
AC_PROG_MKDIR_P
 
186
 
134
187
# Needed for creating the archives in lib/ and the shared libraries.
135
188
AC_PROG_LIBTOOL
 
189
if test "$ac_cv_prog_AR" = false; then
 
190
   AC_MSG_ERROR([The 'ar' utility was not found. Please put ar on the path.])
 
191
fi
 
192
 
136
193
# We use pkg-config to set up the cflags and libs for gtk.
137
194
AC_CHECK_PROG(
138
195
   [HAVE_PKG_CONFIG],
152
209
 
153
210
# If the user explicitly disables X11, then don't try to detect the X-related libraries
154
211
if test "$have_x" = "disabled"; then
155
 
   MULTIMON_ENABLED="no"
 
212
   enable_multimon="no"
 
213
   enable_unity="no"
156
214
elif test "$have_x" != "yes"; then
157
215
   AC_MSG_ERROR(
158
216
      [The X11 libraries were not found. Please configure without X11 (using --without-x), or install the libX11 devel package(s).])
162
220
   COMMON_XLIBS="-lX11"
163
221
   COMMON_XLIBS="-lXext $COMMON_XLIBS"
164
222
 
165
 
   if test "$MULTIMON_ENABLED" != "no"; then
 
223
   AC_CHECK_HEADER(
 
224
      [X11/extensions/extutil.h],
 
225
      [],
 
226
      [AC_MSG_ERROR(
 
227
         [X11/extensions/extutil.h header not found - you're probably on Solaris 10 or older. Please copy that header file onto your system manually, or configure without X11 (using --without-x).])],
 
228
      [#include <X11/Xlib.h>
 
229
       #include <X11/Xproto.h>])
 
230
 
 
231
   if test "$enable_multimon" != "no"; then
166
232
      AC_CHECK_LIB(
167
233
         [Xinerama],
168
234
         [XineramaQueryVersion],
189
255
         [libXtst not found. Please configure without X11 (using --without-x) or install the libXtst devel package(s).])],
190
256
      [$COMMON_XLIBS])
191
257
 
 
258
   # If we're building with support for Unity, we'll need a few additional
 
259
   # libraries.
 
260
   if test "$enable_unity" != "no"; then
 
261
 
 
262
           # Unity needs the X11 Screen Saver extension library. It should be
 
263
           # in the same place as the X11 libraries, so no need for any fancy
 
264
           # path checking.
 
265
           AC_CHECK_LIB(
 
266
              [Xss],
 
267
              [XScreenSaverQueryExtension],
 
268
              [COMMON_XLIBS="-lXss $COMMON_XLIBS"],
 
269
              [AC_MSG_ERROR(
 
270
                 [libXss not found. Please configure without Unity (using --disable-unity) or install the libXss devel package.])],
 
271
              [$COMMON_XLIBS])
 
272
 
 
273
           # Check for the uriparser library and headers. The upstream uriparser
 
274
           # doesn't appear to ship with either a pkg-config file or a
 
275
           # uriparser-config binary, so we'll look for it the old-fashioned
 
276
           # way.
 
277
           #
 
278
           # Note that we look for uriFreeQueryListA because it's a relatively
 
279
           # new symbol that our code needs (it isn't present in the uriparser
 
280
           # that shipped with Ubuntu Hardy).
 
281
           ORIGINAL_LDFLAGS="$LDFLAGS"
 
282
           LDFLAGS="$CUSTOM_URIPARSER_LIBS $LDFLAGS"
 
283
           AC_CHECK_LIB(
 
284
              [uriparser],
 
285
              [uriFreeQueryListA],
 
286
              [if test -n "$CUSTOM_URIPARSER_LIBS"; then
 
287
                       URIPARSER_LIBS="$CUSTOM_URIPARSER_LIBS"
 
288
               else
 
289
                       URIPARSER_LIBS="-luriparser"
 
290
               fi],
 
291
              [AC_MSG_ERROR(
 
292
                 [uriparser library not found or is too old. Please configure without Unity (using --disable-unity) or install the liburiparser devel package.])])
 
293
           LDFLAGS="$ORIGINAL_LDFLAGS"
 
294
 
 
295
           if test -n "$CUSTOM_URIPARSER_CPPFLAGS"; then
 
296
                   URIPARSER_CPPFLAGS="$CUSTOM_URIPARSER_CPPFLAGS"
 
297
           else
 
298
                   # XXX: No pkg-config and no uriparser-config means we need to
 
299
                   # hard-code a sensible default.
 
300
                   URIPARSER_CPPFLAGS="-I/usr/include/uriparser"
 
301
           fi
 
302
           ORIGINAL_CPPFLAGS="$CPPFLAGS"
 
303
           CPPFLAGS="$URIPARSER_CPPFLAGS $CPPFLAGS"
 
304
           AC_CHECK_HEADER(
 
305
              [Uri.h],
 
306
              [],
 
307
              [AC_MSG_ERROR(
 
308
                 [uriparser headers not found. Please configure without Unity (using --disable-unity) or install the liburiparser devel package])])
 
309
           CPPFLAGS="$ORIGINAL_CPPFLAGS"
 
310
 
 
311
           # Check for libpng using pkg-config, or barring that, using
 
312
           # libpng-config.
 
313
           if test "$HAVE_PKG_CONFIG" = "yes"; then
 
314
              AC_MSG_CHECKING([for libpng (via pkg-config)])
 
315
              if pkg-config --exists libpng12; then
 
316
                      LIBPNG_CPPFLAGS="`pkg-config --cflags libpng12`"
 
317
                      LIBPNG_LIBS="`pkg-config --libs libpng12`"
 
318
                      AC_MSG_RESULT([yes])
 
319
              else
 
320
                      AC_MSG_RESULT([no])
 
321
              fi
 
322
           else
 
323
              AC_PATH_PROG(
 
324
                 [LIBPNG_CONFIG],
 
325
                 [libpng-config],
 
326
                 [no])
 
327
              if test "$LIBPNG_CONFIG" != "no"; then
 
328
                      LIBPNG_CPPFLAGS="`$LIBPNG_CONFIG --cflags`"
 
329
                      LIBPNG_LIBS="`$LIBPNG_CONFIG --libs`"
 
330
              fi
 
331
           fi
 
332
           if test -z "$LIBPNG_CPPFLAGS"; then
 
333
              AC_MSG_ERROR(
 
334
                 [libpng not found. Please configure without Unity (using --disable-unity) or install the libpng devel package])
 
335
           fi
 
336
 
 
337
           # Check for the zlib library and headers. Like uriparser, there
 
338
           # isn't a pkg-config or zlib-config file.
 
339
           ORIGINAL_LDFLAGS="$LDFLAGS"
 
340
           LDFLAGS="$CUSTOM_ZLIB_LIBS $LDFLAGS"
 
341
           AC_CHECK_LIB(
 
342
              [z],
 
343
              [zlibVersion],
 
344
              [if test -n "$CUSTOM_ZLIB_LIBS"; then
 
345
                       ZLIB_LIBS="$CUSTOM_ZLIB_LIBS"
 
346
               else
 
347
                       ZLIB_LIBS="-lz"
 
348
               fi],
 
349
              [AC_MSG_ERROR(
 
350
                 [zlib library not found. Please configure without Unity (using --disable-unity) or install the zlib devel package.])])
 
351
           LDFLAGS="$ORIGINAL_LDFLAGS"
 
352
 
 
353
           if test -n "$CUSTOM_ZLIB_CPPFLAGS"; then
 
354
                   ZLIB_CPPFLAGS="$CUSTOM_ZLIB_CPPFLAGS"
 
355
           else
 
356
                   # XXX: No pkg-config and no zlib-config means we need to
 
357
                   # hard-code a sensible default.
 
358
                   ZLIB_CPPFLAGS="-I/usr/include"
 
359
           fi
 
360
           ORIGINAL_CPPFLAGS="$CPPFLAGS"
 
361
           CPPFLAGS="$ZLIB_CPPFLAGS $CPPFLAGS"
 
362
           AC_CHECK_HEADER(
 
363
              [zlib.h],
 
364
              [],
 
365
              [AC_MSG_ERROR(
 
366
                 [zlib headers not found. Please configure without Unity (using --disable-unity) or install the zlib devel package])])
 
367
           CPPFLAGS="$ORIGINAL_CPPFLAGS"
 
368
   fi # End of library checks for Unity.
 
369
 
192
370
   if test -n "$CUSTOM_GTK_CPPFLAGS" -o -n "$CUSTOM_GTK_LIBS"; then
193
371
   # Check to see if we have some version of GTK. gtk_accel_group_add
194
372
   # is a random function that is present in Gtk 1.2 but not Gtk
248
426
      elif test "$HAVE_GTK1" = "yes"; then
249
427
      # Gtk 1.2
250
428
         gtkPackageName="gtk+"
 
429
 
 
430
         # Unity requires Gtk 2.0.
 
431
         if test "$enable_unity" != "no"; then
 
432
            AC_MSG_ERROR([The Unity feature requires Gtk+ 2.0. Please install the Gtk+ 2.0 devel packages or configure without Unity (using --disable-unity)])
 
433
         fi
251
434
      else
252
435
      # We found Gtk+ 2.0 that turned out to have a non-working
253
436
      # pkg-config setup, AND Gtk 1.2 wasn't installed.
262
445
      elif test "$HAVE_PKG_CONFIG" = "yes"; then
263
446
         GTK_CPPFLAGS="$GTK_CPPFLAGS $(pkg-config --cflags $gtkPackageName)"
264
447
         GTK_LIBS="$GTK_LIBS $(pkg-config --libs $gtkPackageName)"
 
448
         # Unity requires libgdk_pixbuf_xlib, which most systems don't seem to
 
449
         # provide via "pkg-config --libs gtk+-2.0".
 
450
         if test "$enable_unity" != "no"; then
 
451
            GTK_LIBS="$GTK_LIBS -lgdk_pixbuf_xlib-2.0"
 
452
         fi
265
453
      # Otherwise, we have a problem.
266
454
      else
267
455
         AC_MSG_ERROR([pkg-config not found. Get pkg-config or set CUSTOM_GTK_CPPFLAGS and CUSTOM_GTK_LIBS to specify gtk header file and library locations.])
308
496
            [PAM_PREFIX="$withval"],
309
497
            [PAM_PREFIX='$(sysconfdir)'])
310
498
 
311
 
AC_ARG_WITH([procps],
 
499
if test "$os" = "linux"; then
 
500
        AC_ARG_WITH([procps],
312
501
            [AS_HELP_STRING([--without-procps],
313
 
               [compile without libproc (disables support for meminfo)])],
 
502
                [compile without libproc (disables support for meminfo)])],
314
503
            [],
315
504
            [with_procps=yes])
 
505
else
 
506
        with_procps="no"
 
507
fi
316
508
 
317
509
if test "$with_procps" = "yes"; then
318
510
        ORIGINAL_LDFLAGS="$LDFLAGS"
319
 
        LDFLAGS="$CUSTOM_PROCPS_LDFLAGS $LDFLAGS"
 
511
        LDFLAGS="$CUSTOM_PROCPS_LIBS $LDFLAGS"
320
512
        AC_CHECK_LIB(
321
513
           [proc-3.2.7],
322
514
           [getstat],
410
602
                ICU_CPPFLAGS="`$ICU_CONFIG --cppflags` -DUSE_ICU"
411
603
                ICU_LIBS="`$ICU_CONFIG --ldflags`"
412
604
 
 
605
                # The icu components are built with C++, so we need to use the
 
606
                # C++ linker when linking icu into our applications and when
 
607
                # performing configuration tests against icu.
 
608
                #
 
609
                # XXX: Getting automake to choose between the C linker and the
 
610
                # C++ linker depending on HAVE_ICU was a royal pain in the ass.
 
611
                # The classic way to do this is to define an optional source
 
612
                # file for a program with an extension of .cxx, using
 
613
                # nodist_EXTRA_fooprogram_SOURCES. This causes automake's
 
614
                # linker detection algorithm to see a C++ source file and
 
615
                # automatically set up the C++ linker and link line for us.
 
616
                # Unfortunately, said linker detection doesn't obey
 
617
                # conditionals, which means that it'd always pick the C++
 
618
                # linker, regardless of the value of HAVE_ICU. Instead, we are
 
619
                # forced to manually set the correct linker in fooprogram_LINK.
 
620
                # However, since none of our programs actually contain C++
 
621
                # code, automake doesn't make the CXXLINK variable (which
 
622
                # contains the linker as well as all link flags) available to
 
623
                # us, so we must hard-code the entire link line into
 
624
                # fooprogram_LINK. Not exactly a futureproof solution...
 
625
                #
 
626
                # Additional references on this problem:
 
627
                # http://sources.redhat.com/ml/automake/1999-10/msg00101.html
 
628
                # http://lists.gnu.org/archive/html/bug-automake/2008-04/msg00010.html
 
629
                # http://www.gnu.org/software/automake/manual/automake.html#Libtool-Convenience-Libraries
 
630
                # http://www.gnu.org/software/automake/manual/automake.html#C_002b_002b-Support
 
631
                AC_PROG_CXX
 
632
                AC_LANG_PUSH([C++])
413
633
                AC_CHECK_LIB([icuuc],
414
634
                             [ucasemap_utf8ToTitle_3_8],
415
635
                             [have_ICU_38="yes"],,
416
636
                             [$ICU_LIBS])
 
637
                AC_LANG_POP([C++])
417
638
 
418
639
                if test "$have_ICU_38" = "yes"; then
419
640
                        ICU_CPPFLAGS="$ICU_CPPFLAGS -DHAVE_ICU_38"
427
648
        fi
428
649
fi
429
650
 
 
651
AC_PATH_PROG(
 
652
   [RPCGEN],
 
653
   [rpcgen],
 
654
   [ AC_MSG_ERROR([rpcgen not found. Please install the libc devel package.]) ])
 
655
 
430
656
###
431
657
### Headers
432
658
###
458
684
   [HAVE_WCHAR_H="yes"],
459
685
   [HAVE_WCHAR_H="no"])
460
686
 
461
 
if test "$MULTIMON_ENABLED" != "no"; then
 
687
if test "$enable_multimon" != "no"; then
462
688
   AC_CHECK_HEADER(
463
689
      [X11/extensions/panoramiXproto.h],
464
690
      [],
585
811
buildHgfsmounter=no
586
812
 
587
813
if test "$os" = "linux"; then
588
 
   MODULES_DIR="/lib/modules/`uname -r`/kernel/"
 
814
   MODULES_DIR="$LINUXDIR/kernel/"
589
815
 
590
816
   CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
591
817
   CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
594
820
   CPPFLAGS="$CPPFLAGS -D_SVID_SOURCE"
595
821
 
596
822
   if test "$osVersion" -ge 202000; then
597
 
      MODULES="$MODULES vmxnet vmmemctl"
 
823
      MODULES="$MODULES vmmemctl vmxnet"
598
824
   fi
599
825
   if test "$osVersion" -ge 204000; then
600
 
      MODULES="$MODULES vmhgfs vmblock"
 
826
      MODULES="$MODULES vmblock vmci vmhgfs vsock"
601
827
      buildHgfsmounter=yes
602
828
   fi
603
829
   if test "$osVersion" -ge 206006; then
608
834
if test "$os" = "freebsd"; then
609
835
   MODULES_DIR="/boot/modules"
610
836
 
611
 
   if test "$osVersion" -gt 302000; then
 
837
   if test "$osVersion" -ge 302000; then
612
838
      MODULES="$MODULES vmmemctl"
613
839
   fi
614
 
   if test "$osVersion" -gt 409000; then
 
840
   if test "$osVersion" -ge 409000; then
615
841
      MODULES="$MODULES vmxnet"
616
842
   fi
617
 
   if test "$osVersion" -gt 600000; then
618
 
      MODULES="$MODULES vmhgfs vmblock"
 
843
   if test "$osVersion" -ge 600000; then
 
844
      MODULES="$MODULES vmblock vmhgfs"
619
845
      buildHgfsmounter=yes
620
846
   fi
621
847
fi
626
852
 
627
853
   GUESTD_LDADD="$GUESTD_LDADD -lsocket"
628
854
   GUESTD_LDADD="$GUESTD_LDADD -lnsl"
 
855
   GUESTD_LDADD="$GUESTD_LDADD -lrpcsvc"
629
856
 
630
857
   VMWARE_USER_CPPFLAGS="$VMWARE_USER_CPPFLAGS -I/usr/X11/include/"
631
858
   VMWARE_USER_LDADD="$VMWARE_USER_LDADD -lXext"
632
859
   VMWARE_USER_LDADD="$VMWARE_USER_LDADD -lX11"
633
860
   VMWARE_USER_LDADD="$VMWARE_USER_LDADD -lsocket"
634
861
   VMWARE_USER_LDADD="$VMWARE_USER_LDADD -lnsl"
 
862
   VMWARE_USER_LDADD="$VMWARE_USER_LDADD -lrpcsvc"
635
863
 
636
864
   # uname -r on Solaris 10 reports "5.10"
637
865
   if test "$osVersion" -ge 510000; then
645
873
AM_CONDITIONAL(FREEBSD, test "$os" = "freebsd")
646
874
AM_CONDITIONAL(THIRTY_TWO_BIT_USERSPACE, test "$userSpaceBitness" = "32")
647
875
AM_CONDITIONAL(HAVE_X11, test "$have_x" = "yes")
648
 
AM_CONDITIONAL(NO_ICU, test "$with_icu" = "yes")
 
876
AM_CONDITIONAL(HAVE_ICU, test "$with_icu" = "yes")
 
877
AM_CONDITIONAL(WITH_KERNEL_MODULES, test "$with_kernel_modules" = "yes")
649
878
AM_CONDITIONAL(PAMD, test -d /etc/pam.d)
 
879
AM_CONDITIONAL(ENABLE_UNITY, test "$enable_unity" = "yes")
650
880
 
651
881
### Feature-specific flags / actions
652
882
# Combine where possible
653
883
 
654
 
# If control reaches this point and multimon is still enabled, then we know all of the
655
 
# tests for required components have passed and it's safe to allow multimon.
656
 
# Otherwise, it should be disabled.
657
 
if test "$MULTIMON_ENABLED" = "no"; then
 
884
# If control reaches this point and multimon is still enabled, then we know
 
885
# all of the tests for required components have passed and it's safe to allow
 
886
# multimon. Otherwise, it should be disabled.
 
887
if test "$enable_multimon" = "no"; then
 
888
   # XXX: For consistency, change this to ENABLE_MULTIMON. This will require
 
889
   # some additional code cleanup.
658
890
   AC_DEFINE([NO_MULTIMON], 1, [Define to 1 if building without multimon support.])
659
891
fi
660
892
 
686
918
### General substs
687
919
 
688
920
AC_SUBST([TARGET_OS])
 
921
AC_SUBST([KERNEL_RELEASE])
689
922
AC_SUBST([MODULES_OS])
690
923
AC_SUBST([MODULES_DIR])
691
924
AC_SUBST([MODULES])
699
932
AC_SUBST([ICU_CPPFLAGS])
700
933
AC_SUBST([ICU_LIBS])
701
934
AC_SUBST([PAM_PREFIX])
 
935
AC_SUBST([URIPARSER_CPPFLAGS])
 
936
AC_SUBST([URIPARSER_LIBS])
 
937
AC_SUBST([LIBPNG_CPPFLAGS])
 
938
AC_SUBST([LIBPNG_LIBS])
 
939
AC_SUBST([ZLIB_CPPFLAGS])
 
940
AC_SUBST([ZLIB_LIBS])
702
941
 
703
942
### Lib substs
704
943
 
724
963
AC_CONFIG_FILES([                      \
725
964
   Makefile                            \
726
965
   lib/Makefile                        \
 
966
   lib/appUtil/Makefile                \
727
967
   lib/auth/Makefile                   \
728
968
   lib/backdoor/Makefile               \
729
969
   lib/backdoor/shared/Makefile        \
730
970
   lib/conf/Makefile                   \
731
971
   lib/dict/Makefile                   \
732
972
   lib/dnd/Makefile                    \
 
973
   lib/dynxdr/Makefile                 \
733
974
   lib/err/Makefile                    \
734
975
   lib/eventManager/Makefile           \
735
976
   lib/file/Makefile                   \
736
977
   lib/foundryMsg/Makefile             \
 
978
   lib/ghIntegration/Makefile          \
737
979
   lib/ghIntegrationStub/Makefile      \
738
980
   lib/guestApp/Makefile               \
739
981
   lib/guestInfo/Makefile              \
 
982
   lib/guestRpc/Makefile               \
740
983
   lib/hgfs/Makefile                   \
741
984
   lib/hgfsBd/Makefile                 \
742
985
   lib/hgfsServer/Makefile             \
743
986
   lib/hgfsServerManagerGuest/Makefile \
744
987
   lib/hgfsServerPolicyGuest/Makefile  \
745
988
   lib/deployPkg/Makefile              \
 
989
   lib/image/Makefile                  \
746
990
   lib/impersonate/Makefile            \
747
991
   lib/message/Makefile                \
748
992
   lib/message/shared/Makefile         \
753
997
   lib/panicDefault/Makefile           \
754
998
   lib/printer/Makefile                \
755
999
   lib/procMgr/Makefile                \
 
1000
   lib/raster/Makefile                 \
 
1001
   lib/region/Makefile                 \
 
1002
   lib/resolution/Makefile             \
756
1003
   lib/rpcIn/Makefile                  \
757
1004
   lib/rpcOut/Makefile                 \
758
1005
   lib/rpcOut/shared/Makefile          \
759
1006
   lib/rpcVmx/Makefile                 \
760
1007
   lib/SLPv2Parser/Makefile            \
761
1008
   lib/socketMgr/Makefile              \
762
 
   lib/strUtil/Makefile                \
763
1009
   lib/string/Makefile                 \
764
1010
   lib/string/shared/Makefile          \
 
1011
   lib/stubs/Makefile                  \
 
1012
   lib/stubs/shared/Makefile           \
765
1013
   lib/sync/Makefile                   \
766
1014
   lib/sync/shared/Makefile            \
767
1015
   lib/syncDriver/Makefile             \
768
1016
   lib/system/Makefile                 \
769
1017
   lib/toolsLogger/Makefile            \
770
1018
   lib/unicode/Makefile                \
 
1019
   lib/unity/Makefile                  \
771
1020
   lib/unityStub/Makefile              \
 
1021
   lib/unityWindowTracker/Makefile     \
772
1022
   lib/user/Makefile                   \
773
1023
   lib/vixTools/Makefile               \
774
1024
   lib/vmBackupLib/Makefile            \