-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconfigure.ac
1113 lines (917 loc) · 37.3 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# **************************************************************************
# SoQt/configure.ac
m4_define([SOQT_MAJOR], [1])
m4_define([SOQT_MINOR], [6])
m4_define([SOQT_MICRO], [3])
m4_define([SOQT_BETA], [])
m4_define([VERSION_STRING], [SOQT_MAJOR.SOQT_MINOR.SOQT_MICRO[]SOQT_BETA])
m4_define([SOQT_ABI_CURRENT], [m4_eval((SOQT_MAJOR*20)+SOQT_MINOR)])
m4_define([SOQT_ABI_REVISION], [SOQT_MICRO])
m4_define([SOQT_ABI_AGE], [SOQT_MINOR])
# only used for Debian Linux (and not even there yet)
m4_define([SO_NUMBER], [m4_eval(SOQT_MAJOR*20)])
m4_define([MAC_FRAMEWORK_NAME_DEFAULT], [SoQt])
m4_define([MAC_FRAMEWORK_PREFIX_DEFAULT], [/Library/Frameworks])
m4_define([MAC_FRAMEWORK_VERSION_DEFAULT], [A])
# **************************************************************************
# TODO:
# configure tests for: dpkg-buildpackage, makensis
# **************************************************************************
AC_PREREQ(2.50)
AC_INIT([SoQt], [VERSION_STRING], [[email protected]])
AC_CONFIG_AUX_DIR([cfg])
AC_CONFIG_SRCDIR([src/Inventor/Qt/SoQt.cpp])
AH_TOP([
#ifndef SOQT_INTERNAL
#error this is a private header file
#endif
])
# **************************************************************************
AC_CANONICAL_SYSTEM
# **************************************************************************
SIM_AC_MSVC_DSP_ENABLE_OPTION
SIM_AC_SETUP_MSVCPP_IFELSE
# **************************************************************************
# Library versioning. For information about our versioning strategy, see the
# document ``HACKING'' in the Coin CVS module.
AC_SUBST([SOQT_MAJOR_VERSION], [SOQT_MAJOR])
AC_SUBST([SOQT_MINOR_VERSION], [SOQT_MINOR])
AC_SUBST([SOQT_MICRO_VERSION], [SOQT_MICRO])
AC_SUBST([SOQT_BETA_VERSION], [SOQT_BETA])
AC_SUBST([SOQT_VERSION], [$SOQT_MAJOR_VERSION.$SOQT_MINOR_VERSION.$SOQT_MICRO_VERSION$SOQT_BETA_VERSION])
VERSION=$SOQT_VERSION
# Libtool versioning
AC_SUBST([LT_CURRENT], [SOQT_ABI_CURRENT])
AC_SUBST([LT_REVISION], [SOQT_ABI_REVISION])
AC_SUBST([LT_AGE], [SOQT_ABI_AGE])
AC_SUBST([SOQT_SO_VERSION], [SO_NUMBER])
AC_DEFINE_UNQUOTED([SOQT_MAJOR_VERSION], [$SOQT_MAJOR_VERSION],
[Define to the major version of SoQt])
AC_DEFINE_UNQUOTED([SOQT_MINOR_VERSION], [$SOQT_MINOR_VERSION],
[Define to the minor version of SoQt])
AC_DEFINE_UNQUOTED([SOQT_MICRO_VERSION], [$SOQT_MICRO_VERSION],
[Define to the micro version of SoQt])
if test x"$SOQT_BETA_VERSION" = x""; then :; else
AC_DEFINE_UNQUOTED([SOQT_BETA_VERSION], [$SOQT_BETA_VERSION],
[define this to the SoQt beta version letter])
fi
AC_DEFINE_UNQUOTED([SOQT_VERSION], ["$SOQT_VERSION"],
[Version string for SoQt])
# **************************************************************************
soqt_build_dir=`pwd`
soqt_src_dir=`cd "$srcdir"; pwd`
soqt_w32_build_dir=`cygpath -w "$soqt_build_dir" 2>/dev/null || echo "$soqt_build_dir"`
soqt_w32_src_dir=`cygpath -w "$soqt_src_dir" 2>/dev/null || echo "$soqt_src_dir"`
SIM_AC_RELATIVE_SRC_DIR
# **************************************************************************
# Universal Binary support (Mac OS X)
SIM_AC_UNIVERSAL_BINARIES
# **************************************************************************
# Miscellaneous options and initializations.
AM_INIT_AUTOMAKE([SoQt], [$VERSION])
# File to cram results from the configure tests into.
# we pit this in src/ to avoid having to add extra INCLUDES directives in
# MAkefile.am
AM_CONFIG_HEADER(src/config.h)
# Default to not building a static library.
# Can be overridden by the user with --enable-static.
AM_DISABLE_STATIC
# Turn off default maintainer make-rules -- use ./bootstrap instead.
AM_MAINTAINER_MODE
# Use C++ for configure tests and Libtool.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX
AC_PROG_CXXCPP
SIM_AC_STRIP_EXIT_DECLARATION
AC_LANG(C++)
AC_OBJEXT
AC_EXEEXT
if $BUILD_WITH_MSVC; then
case ${enable_static-no} in
yes | true) SOQT_STATIC=true;
enable_shared=no ;; # --enable-static-problem with autoconf 2.58
*) SOQT_STATIC=false ;;
esac
case ${enable_shared-default} in
default) ;;
yes | true) SOQT_STATIC=false ;;
*) SOQT_STATIC=true ;;
esac
fi
# moved below AC_PROG_CC so -g is preserved in $C[XX]FLAGS - 20020110 larsa
if $BUILD_WITH_MSVC; then
SIM_AC_SETUP_MSVCRT([
CPPFLAGS="$CPPFLAGS $sim_ac_msvcrt_CPPFLAGS"
CFLAGS="$CFLAGS $sim_ac_msvcrt_CFLAGS"
CXXFLAGS="$CXXFLAGS $sim_ac_msvcrt_CXXFLAGS"
LDFLAGS="$LDFLAGS $sim_ac_msvcrt_LDFLAGS"
LIBS="$LIBS $sim_ac_msvcrt_LIBS"
# sim_ac_msvcrt_LIBLIBS is set up at the end
# sim_ac_msvcrt_LIBLDFLAGS is set up at the end
LDFLAGS="$LDFLAGS $sim_ac_msvcrt_LIBLDFLAGS"
LIBS="$LIBS $sim_ac_msvcrt_LIBLIBS"
AC_SUBST([SOGUI_MSVC_LIBC], [$sim_ac_msvcrt])
])
fi
# Detect Mac OS X in general
case $host_os in
darwin* )
sim_ac_macosx=true
# Check for Mac OS 10.2 or later
case $host_os in
darwin[[678]].* )
sim_ac_macosx_10_2ff=true
;;
* )
sim_ac_macosx_10_2ff=false
;;
esac
;;
* )
sim_ac_macosx=false
sim_ac_macosx_10_2ff=false
;;
esac
# Initialize libtool
if $BUILD_WITH_MSVC; then
RANLIB=:
export RANLIB
fi
SIM_AC_MAC_CPP_ADJUSTMENTS
AC_PROG_LIBTOOL
# **************************************************************************
if test x"$prefix" = x"NONE"; then
prefix=/usr/local
fi
# These are used for constructing the soqt-config file.
AC_SUBST([SOGUI_EXTRA_CPPFLAGS], [$CPPFLAGS])
AC_SUBST([SOGUI_EXTRA_CFLAGS], [$CFLAGS])
AC_SUBST([SOGUI_EXTRA_CXXFLAGS], [$CXXFLAGS])
AC_SUBST([SOGUI_EXTRA_LDFLAGS], [$LDFLAGS])
AC_SUBST([SOGUI_EXTRA_LIBS], [$LIBS])
# SIM_EXPAND_DIR_VARS
# *******************************************************************
# * Provide this nasty hack to help building SoXt on platforms
# * where one can bump into the "Arg list too long" problem
# * (IBM AIX, SGI IRIX 6.2 and IRIX 6.5 with standard settings are
# * known to fail), or where the build process is unbearably slow.
AC_ARG_ENABLE(compact,
AC_HELP_STRING([--enable-compact], [enable hack for compact compilation [[default=no]]]),
[case "${enableval}" in
yes | true) enable_compact=yes ;;
no | false) enable_compact=no ;;
*) SIM_AC_ENABLE_ERROR([--enable-compact]) ;;
esac],
enable_compact=no)
AM_CONDITIONAL(HACKING_COMPACT_BUILD, test x"$enable_compact" = x"yes")
# **************************************************************************
AC_ARG_WITH(
[alternate],
[AC_HELP_STRING([--with-alternate=string],
[specify name of alternate configuration])],
[CONFIG=$withval],
[CONFIG=default])
AC_SUBST(CONFIG)
AC_ARG_WITH(
[suffix],
[AC_HELP_STRING([--with-suffix=string],
[specify library name suffix (e.g. "_g")])],
[SUFFIX=$withval],
[SUFFIX=])
AC_SUBST(SUFFIX)
# **************************************************************************
# If you just want to generate docs.
sim_ac_build_library=true
AC_ARG_ENABLE(
[build],
AC_HELP_STRING([--disable-build], [disable configuring for library build]), [
case $enableval in
no) sim_ac_build_library=false ;;
*) ;;
esac])
AM_CONDITIONAL(BUILD_LIBRARY, $sim_ac_build_library)
# *******************************************************************
# * Do we want to build the documentation?
# *******************************************************************
SIM_AC_SOGUI_SETUP_DOXYGEN(SoQt)
# The following variables are used in sogui.doxygen.in
AC_SUBST([SOGUI_MAJOR_VERSION], [SOQT_MAJOR])
AC_SUBST([SOGUI_MINOR_VERSION], [SOQT_MINOR])
AM_CONDITIONAL([BUILD_METAFILES], [true])
AC_SUBST([meta_prefix], [moc_])
# *******************************************************************
# Use X11 on Mac OS X only if specifically requested by the user.
# FIXME: Since the Darwin-specific X11 check is now part of
# SIM_AC_CHECK_X11, we can probably remove the sim_ac_want_x11
# variable at all. Just trying to do this one step at a time...
# 20041006 kyrah
sim_ac_want_x11=no
case $host_os in
darwin*)
SIM_AC_CHECK_X11([sim_ac_want_x11=yes],[sim_ac_want_x11=no])
;;
*)
sim_ac_want_x11=yes
;;
esac
# **************************************************************************
# Header files we might want.
AC_CHECK_HEADERS([windows.h unistd.h sys/types.h sys/time.h netinet/in.h])
SIM_AC_CHECK_HEADER_TLHELP32_H
if test x"$sim_ac_want_x11" = xyes; then
AC_CHECK_HEADERS([X11/extensions/SGIMisc.h X11/Xproto.h X11/extensions/XInput.h])
fi
# *******************************************************************
SIM_AC_CHECK_WIN32_API
# *******************************************************************
# Instead of getenv() on most Win32 platforms (not Windows CE).
AC_MSG_CHECKING([for GetEnvironmentVariable() function])
AC_TRY_LINK([#include <windows.h>],
[(void)GetEnvironmentVariable("FOOBAR", NULL, 0);],
[AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_GETENVIRONMENTVARIABLE],1, [Define to use GetEnvironmentVariable() instead of getenv()])],
[AC_MSG_RESULT([no])])
# *******************************************************************
# Win32 LoadLibrary() and friends available? (Used for Win32-specific
# debugging code).
SIM_AC_CHECK_LOADLIBRARY(
AC_DEFINE([HAVE_WIN32_LOADLIBRARY], 1, [Define to use Win32 LoadLibrary()])
)
# *******************************************************************
# The GetClassName() Win32 API call needs user32.lib to be added to
# the link line - that's the real purpose of this test.
sim_ac_save_LIBS=$LIBS
LIBS="$LIBS -luser32"
AC_MSG_CHECKING([for GetClassName() function])
AC_TRY_LINK([
#ifdef HAVE_WINDOWS_H
#include <windows.h>
#endif
], [
(void)GetClassName(NULL, NULL, 0);
], [
AC_MSG_RESULT([yes])
SOQT_EXTRA_LIBS="$SOQT_EXTRA_LIBS -luser32"
], [
AC_MSG_RESULT([no])
LIBS=$sim_ac_save_LIBS
])
# **************************************************************************
# Check to see if fink is installed on the system.
# The only reason why we would need fink is for Qt/X11 on Mac OS X, so if
# we are doing a non-X11 build, ignore it to avoid linking problems.
if test x"$sim_ac_want_x11" = xyes; then
SIM_AC_CHECK_FINK([
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_fink_cppflags"
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS $sim_ac_fink_ldflags"
])
fi
# **************************************************************************
# Search and set up necessary stuff to use Open Inventor or Coin.
## Run AC_PATH_XTRA outside the if-then-else-fi, as AC_PATH_XTRA
## AC_REQUIREs AC_PATH_X, which means AC_PATH_X will only get
## expanded on the first AC_PATH_XTRA, which means trouble when
## AC_PATH_XTRA uses $no_x="yes"? from AC_PATH_X to decide whether
## or not to define X_DISPLAY_MISSING on X11-less systems.
if test x"$sim_ac_want_x11" = xyes; then
AC_PATH_XTRA
fi
# $with_inventor is from within SIM_AC_HAVE_INVENTOR_IFELSE, and can
# be used here since the value is empty when it reaches this point
# unless it has been explicitly set.
AC_ARG_ENABLE(
[inventor-debug],
AC_HELP_STRING([--enable-inventor-debug],
[use debug version of TGS inventor]))
if test x"${with_inventor+set}" = x"set" &&
test x"${with_inventor}" != x"no"; then
# For Open Inventor linkage, we need to check for a shitload of libraries.
SIM_AC_CHECK_DL([
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_dl_cppflags"
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS $sim_ac_dl_ldflags"
SOGUI_EXTRA_LIBS="$sim_ac_dl_libs $SOGUI_EXTRA_LIBS"
])
SIM_AC_CHECK_X11([
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_x11_cppflags"
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS $sim_ac_x11_ldflags"
SOGUI_EXTRA_LIBS="$sim_ac_x11_libs $SOGUI_EXTRA_LIBS"
])
if test x"$sim_ac_x11_avail" = xyes; then
SIM_AC_CHECK_X11SHMEM(SOGUI_EXTRA_LIBS="$sim_ac_x11shmem_libs $SOGUI_EXTRA_LIBS")
SIM_AC_CHECK_X11MU(SOGUI_EXTRA_LIBS="$sim_ac_x11mu_libs $SOGUI_EXTRA_LIBS")
SIM_AC_CHECK_X11XID(SOGUI_EXTRA_LIBS="$sim_ac_x11xid_libs $SOGUI_EXTRA_LIBS")
fi
SIM_AC_CHECK_OPENGL([
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_ogl_cppflags"
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS $sim_ac_ogl_ldflags"
SOGUI_EXTRA_LIBS="$sim_ac_ogl_libs $SOGUI_EXTRA_LIBS"
], AC_MSG_ERROR([needs an OpenGL-compatible development system installation]))
SIM_AC_CHECK_GLU([
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_glu_cppflags"
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS $sim_ac_glu_ldflags"
SOGUI_EXTRA_LIBS="$sim_ac_glu_libs $SOGUI_EXTRA_LIBS"
], AC_MSG_ERROR(needs the OpenGL utility library))
SIM_AC_HAVE_INVENTOR_IFELSE(
[CPPFLAGS="$sim_ac_inventor_cppflags $CPPFLAGS"
LDFLAGS="$sim_ac_inventor_ldflags $LDFLAGS"
LIBS="$sim_ac_inventor_libs $LIBS"
SOGUI_EXTRA_CPPFLAGS="$sim_ac_inventor_cppflags $SOGUI_EXTRA_CPPFLAGS"
SOGUI_EXTRA_LDFLAGS="$sim_ac_inventor_ldflags $SOGUI_EXTRA_LDFLAGS"
SOGUI_EXTRA_LIBS="$sim_ac_inventor_libs $SOGUI_EXTRA_LIBS"],
AC_MSG_ERROR(couldn't compile and link against Open Inventor))
sim_ac_inventor_brand=sgi
SIM_AC_CONFIGURATION_SETTING([Open Inventor brand], [SGI/TGS Inventor])
else
if $sim_ac_build_library; then
SIM_AC_CHECK_HEADER_GL([
CPPFLAGS="$CPPFLAGS $sim_ac_gl_cppflags"
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_gl_cppflags"
], [AC_MSG_ERROR([could not detect a gl.h header file])])
SIM_AC_HAVE_COIN_IFELSE([
CPPFLAGS="$CPPFLAGS $sim_ac_coin_cppflags"
if $SOQT_STATIC; then
if $BUILD_WITH_MSVC; then
:
else
LDFLAGS="$LDFLAGS $sim_ac_coin_ldflags"
LIBS="$sim_ac_coin_libs $LIBS"
fi
else
LDFLAGS="$LDFLAGS $sim_ac_coin_ldflags"
LIBS="$sim_ac_coin_libs $LIBS"
fi
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_coin_cppflags"
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS $sim_ac_coin_ldflags"
SOGUI_EXTRA_LIBS="$sim_ac_coin_libs $SOGUI_EXTRA_LIBS"
], [AC_MSG_ERROR([couldn't compile and link against Coin])])
fi # sim_ac_build_library
if test x"$sim_ac_want_x11" = xyes; then
SIM_AC_CHECK_X11_READY(
[sim_ac_x11_ready=true],
[sim_ac_x11_ready=false])
if $sim_ac_x11_ready; then :; else
SIM_AC_CHECK_X11([
CPPFLAGS="$CPPFLAGS $sim_ac_x11_cppflags"
LDFLAGS="$LDFLAGS $sim_ac_x11_ldflags"
LIBS="$sim_ac_x11_libs $LIBS"
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_x11_cppflags"
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS $sim_ac_x11_ldflags"
SOGUI_EXTRA_LIBS="$sim_ac_x11_libs $SOGUI_EXTRA_LIBS"
])
# FIXME: we just implicitly assume that -lXext and -lXmu is available
# if -lX11 is available from coin-config. Should really have macros
# SIM_AC_CHECK_[X11SHMEM|X11MU]_READY. 20001116 mortene.
if test x"$sim_ac_x11_avail" = xyes; then
SIM_AC_CHECK_X11SHMEM([
# LIBS="$sim_ac_x11shmem_libs $LIBS"
SOGUI_EXTRA_LIBS="$sim_ac_x11shmem_libs $SOGUI_EXTRA_LIBS"
])
SIM_AC_CHECK_X11MU([
# LIBS="$sim_ac_x11mu_libs $LIBS"
SOGUI_EXTRA_LIBS="$sim_ac_x11mu_libs $SOGUI_EXTRA_LIBS"
])
fi
fi
SIM_AC_CHECK_X11XID([
SOGUI_EXTRA_LIBS="$sim_ac_x11xid_libs $SOGUI_EXTRA_LIBS"
])
fi
sim_ac_inventor_brand=coin
SIM_AC_CONFIGURATION_SETTING([Open Inventor brand], [Coin])
fi
if test x"$sim_ac_want_x11" = xyes; then
SIM_AC_HAVE_GLX_IFELSE([
AC_DEFINE([HAVE_GLX], 1, [define if you have GLX X11 OpenGL bindings])
])
## We need this extra, final X11 check to set up the HAVE_X11_AVAILABLE
## define -- the X_DISPLAY_MISSING define provided by the built-in
## Autoconf X11 check is not strict enough.
SIM_AC_CHECK_X11_READY([AC_DEFINE([HAVE_X11_AVAILABLE],,
[define if it is possible to build against X11])])
fi
# static builds on windows: we don't want the coin libs on the final link line,
# but we need them for these tests. 20041022 larsa
sim_ac_configure_save_ldflags=$LDFLAGS
sim_ac_configure_save_libs=$LIBS
if test $sim_ac_inventor_brand = coin && $SOQT_STATIC && $BUILD_WITH_MSVC; then
LDFLAGS="$LDFLAGS $sim_ac_coin_ldflags"
LIBS="$sim_ac_coin_libs $LIBS"
fi
# Check for the availability of this node (it is used in the hidden
# line rendering), which is not part of older Inventor implementations.
SIM_AC_HAVE_INVENTOR_NODE(SoPolygonOffset)
# check for misc VRML97 features
SIM_AC_HAVE_INVENTOR_VRMLNODE(SoVRMLMaterial)
SIM_AC_HAVE_INVENTOR_VRMLNODE(SoVRMLViewpoint)
SIM_AC_HAVE_INVENTOR_VRMLNODE(SoVRMLBackground)
SIM_AC_HAVE_INVENTOR_VRMLNODE(SoVRMLFog)
SIM_AC_HAVE_INVENTOR_FEATURE(
[for SoContextHandler class],
[#include <Inventor/misc/SoContextHandler.h>], [
SoContextHandler::destructingContext(0);],
[HAVE_SOCONTEXTHANDLER])
SIM_AC_HAVE_INVENTOR_FEATURE(
[for SoKeyboardEvent::DELETE enum],
[#include <Inventor/events/SoKeyboardEvent.h>], [
/* This is either DELETE or KEY_DELETE */
SoKeyboardEvent::Key key = SoKeyboardEvent::DELETE;],
[HAVE_SOKEYBOARDEVENT_DELETE])
SIM_AC_HAVE_INVENTOR_FEATURE(
[for SoMouseButtonEvent::BUTTON5 enum],
[#include <Inventor/events/SoMouseButtonEvent.h>], [
/* mouse wheel support needs BUTTON4 and BUTTON5 */
SoMouseButtonEvent::Button button = SoMouseButtonEvent::BUTTON5;],
[HAVE_SOMOUSEBUTTONEVENT_BUTTON5])
SIM_AC_HAVE_INVENTOR_FEATURE(
[for SoCamera::setStereoMode() method],
[#include <Inventor/nodes/SoPerspectiveCamera.h>],
[/* SoCamera is abstract, so test with SoPerspectiveCamera */
SoPerspectiveCamera * c = new SoPerspectiveCamera;
c->setStereoMode(SoCamera::MONOSCOPIC);],
[HAVE_SOCAMERA_SETSTEREOMODE])
SIM_AC_HAVE_INVENTOR_FEATURE(
[for SoGLRenderAction::SORTED_LAYERS_BLEND transparency mode],
[#include <Inventor/actions/SoGLRenderAction.h>], [
/* try to get SORTED_LAYERS_BLEND transparency mode value */
int num = (int) SoGLRenderAction::SORTED_LAYERS_BLEND;],
[HAVE_SORTED_LAYERS_BLEND])
SIM_AC_INVENTOR_EXTENSIONS([
LDFLAGS="$sim_ac_iv_extension_LDFLAGS $LDFLAGS"
SOGUI_EXTRA_LDFLAGS="$sim_ac_iv_extension_LDFLAGS $SOGUI_EXTRA_LDFLAGS"
LIBS="$sim_ac_iv_extension_LIBS $LIBS"
SOGUI_EXTRA_LIBS="$sim_ac_iv_extension_LIBS $SOGUI_EXTRA_LIBS"
])
SIM_AC_HAVE_INVENTOR_FEATURE(
[for SbImage::addReadImageCB],
[#include <Inventor/SbImage.h>], [SbImage::addReadImageCB(NULL, NULL);],
[HAVE_SBIMAGE_ADDREADIMAGECB])
sim_ac_enable_pkgconfig=true
AC_ARG_ENABLE(
[pkgconfig],
AC_HELP_STRING([--enable-pkgconfig], [enable pkgconfig usage for Qt4 detection [[default=yes]]]), [
case $enableval in
no) sim_ac_enable_pkgconfig=false ;;
*) ;;
esac])
if $sim_ac_enable_pkgconfig; then
PKG_CHECK_MODULES([QT4], [QtCore QtGui QtOpenGL], [
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $QT4_CFLAGS"
SOGUI_EXTRA_LIBS="$QT4_LIBS $SOGUI_EXTRA_LIBS"
CPPFLAGS="$CPPFLAGS $QT4_CFLAGS"
LIBS="$QT4_LIBS $LIBS"
], [
SIM_AC_WARN([no-pkgconfig-qt])
sim_ac_enable_pkgconfig=false
])
if $sim_ac_enable_pkgconfig; then
AC_MSG_CHECKING([for moc])
MOC=`$PKG_CONFIG --variable=moc_location QtCore`
if test -z $MOC; then
SIM_AC_ERROR([no-moc])
fi
# Debian provides a wrong moc_location path (Bug#401807)
if test -x $MOC; then
AC_MSG_RESULT([$MOC])
else
AC_MSG_RESULT([QtCore pkg-config provided moc_location points to non-existing path])
MOC=""
AC_PATH_PROG([MOC], [moc], [false], [$PATH])
if test x"$MOC" = x"false"; then
SIM_AC_ERROR([no-moc])
fi
fi
QT_VERSION=`$PKG_CONFIG --modversion QtCore`
AC_SUBST([QT_VERSION])
AC_DEFINE_UNQUOTED([GUI_TOOLKIT_VERSION], [qVersion()],
[Version string for Qt])
fi
fi
# remove libs we don't want to link into library again
#LDFLAGS=$sim_ac_configure_save_ldflags
#LIBS=$sim_ac_configure_save_libs
# we carry the Coin libs a bit further, since they may include OpenGL which
# may be necessary for QGL detection. 20041025 larsa
# **************************************************************************
# Check that the Qt installation looks ok and include the
# necessary paths and link libraries.
if test x"$sim_ac_want_x11" = xyes; then
if test x"$sim_ac_x11mu_avail" != xyes; then
## It's really QGL that depends on Xmu, not Qt. But we need to do this
## check before checking for the Qt library, not after, in case QGL is
## embedded into Qt.
SIM_AC_CHECK_X11MU([SOGUI_EXTRA_LIBS="$sim_ac_x11mu_libs $SOGUI_EXTRA_LIBS"])
fi
fi
if test x"$sim_ac_enable_pkgconfig" = xfalse; then
SIM_AC_QT_PROG(MOC, moc)
if test x"$MOC" = x"false"; then
SIM_AC_ERROR([no-moc])
fi
fi
# see commented-out restore above
#sim_ac_configure_save_ldflags=$LDFLAGS
#sim_ac_configure_save_libs=$LIBS
if $sim_ac_build_library && test x"$sim_ac_enable_pkgconfig" = xfalse; then
SIM_AC_CHECK_QT([
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_qt_cppflags"
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS $sim_ac_qt_ldflags"
SOGUI_EXTRA_LIBS="$sim_ac_qt_libs $SOGUI_EXTRA_LIBS"
CPPFLAGS="$CPPFLAGS $sim_ac_qt_cppflags"
LDFLAGS="$LDFLAGS $sim_ac_qt_ldflags"
LIBS="$sim_ac_qt_libs $LIBS"
], [
SIM_AC_ERROR([no-qt])
])
SIM_AC_CHECK_QGL([
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS $sim_ac_qgl_cppflags"
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS $sim_ac_qgl_ldflags"
SOGUI_EXTRA_LIBS="$sim_ac_qgl_libs $SOGUI_EXTRA_LIBS"
CPPFLAGS="$CPPFLAGS $sim_ac_qgl_cppflags"
LDFLAGS="$LDFLAGS $sim_ac_qgl_ldflags"
LIBS="$sim_ac_qgl_libs $LIBS"
], [
SIM_AC_ERROR([no-qgl])
])
# ALERT: We have disabled these Qt checks because Qt features are now
# to be set up in src/qt-config.h. Do not re-enable them, unless
# we for some reason decide to go back from this system again.
# It is still OK to use Qt-checking features for other projects, but
# SoQt must be buildable from pregenerated files against several
# different versions of Qt.
#
# Check misc capabilities of the Qt and QGL libraries which depends
# on the exact version available to us.
# SIM_AC_QWIDGET_SHOWFULLSCREEN
# SIM_AC_QGLFORMAT_EQ_OP
# SIM_AC_QGLFORMAT_SETOVERLAY
# SIM_AC_QGLWIDGET_SETAUTOBUFFERSWAP
# SIM_AC_QAPPLICATION_HASPENDINGEVENTS
# SIM_AC_QWIDGET_HASSETWINDOWSTATE
# QStyleFactory was added in Qt 3.0.
# AC_CHECK_HEADERS([qstylefactory.h])
# We've had an external report about soqt.dll link failing due to missing
# the qt_win_use_simple_timers symbol in the installed Qt library. This
# was with Qt 3.3.1 MT under Windows.
# AC_MSG_CHECKING([for qt_win_use_simple_timers symbol])
# AC_TRY_LINK([#include <qglobal.h>
# Q_EXPORT extern bool qt_win_use_simple_timers;],
# [qt_win_use_simple_timers = true;],
# [AC_MSG_RESULT([yes])
# AC_DEFINE([HAVE_QT_WIN_USE_SIMPLE_TIMERS], 1, [Defined if qt_win_use_simple_timers is available])],
# [AC_MSG_RESULT([no])])
SIM_AC_QT_VERSION
AC_DEFINE_UNQUOTED([GUI_TOOLKIT_VERSION], ["$sim_ac_qt_version"],
[Version string for Qt])
fi # sim_ac_build_library
if test $sim_ac_inventor_brand=coin && $SOQT_STATIC && $BUILD_WITH_MSVC; then
LDFLAGS=$sim_ac_configure_save_ldflags
LIBS=$sim_ac_configure_save_libs
fi
# **************************************************************************
# Spaceball support through Linux Joystick driver
# Tmp disabled.
AM_CONDITIONAL(HAVE_JOYSTICK_LINUX, false)
#SIM_AC_CHECK_JOYSTICK_LINUX([
# AC_DEFINE(HAVE_JOYSTICK_LINUX, ,
# [Define to enable Linux Joystick driver support])
# AC_DEFINE_UNQUOTED(SOXT_LINUX_JOYSTICK_DEVICE,
# "$sim_ac_joystick_linux_device",
# [Define this to device handle to fallback on])
#])
#AM_CONDITIONAL(HAVE_JOYSTICK_LINUX, $sim_ac_joystick_linux_avail)
#SIM_AC_CONFIGURATION_SETTING([Joystick Device], [$sim_ac_joystick_linux_device])
# **************************************************************************
# Compiler control.
# Make it possible for the user to turn off optimization flags.
SIM_AC_COMPILER_OPTIMIZATION
SIM_AC_COMPILE_DEBUG([
CPPFLAGS="$CPPFLAGS -DSOQT_DEBUG=1"
], [
CPPFLAGS="$CPPFLAGS -DSOQT_DEBUG=0"
])
SIM_AC_CHECK_VAR_FUNCTIONNAME
SIM_AC_DEBUGSYMBOLS
SIM_AC_RTTI_SUPPORT
SIM_AC_EXCEPTION_HANDLING
SIM_AC_PROFILING_SUPPORT
SIM_AC_COMPILER_WARNINGS
SIM_AC_DETECT_COMMON_COMPILER_FLAGS
# This is at least used to allow static compilation on Cygwin + MSWindows
# without hitting the SOQT_DLL / SOQT_NOT_DLL safety check.
CPPFLAGS="$CPPFLAGS -DSOQT_INTERNAL"
SIM_AC_SOGUI_STATIC_DEFAULTS
if $sim_ac_static_defaults; then
SIM_AC_CONFIGURATION_SETTING([Static Materials], [Yes])
else
SIM_AC_CONFIGURATION_SETTING([Static Materials], [No])
fi
if test -n "$SUFFIX"; then
SIM_AC_CONFIGURATION_SETTING([SoQt library name suffix], [$SUFFIX])
fi
# **************************************************************************
AC_SUBST([COIN_COMPILER], ["$CXX"])
AC_SUBST([BUILD_WITH_MSVC])
if $BUILD_WITH_MSVC; then
# don't use wrapmsvc from source hierarchy when later using soqt-config.
COIN_COMPILER="wrapmsvc"
fi
AC_SUBST([ac_compiler_gnu])
# FIXME: gcc-4 generates a warning when a class has virtual functions
# but no virtual destructor. We cannot add a virtual destructor without
# breaking the ABI, so just silence the warning until the next major
# version (see also FIXME in SoGuiObject.h.in) 20060404 kyrah
if test x"$ac_compiler_gnu"=x"yes"; then
gccversion4=`cpp -dM /dev/null | grep __VERSION__ |grep '__VERSION__ "4'`
if test "$gccversion4"; then
CXXFLAGS="$CXXFLAGS -Wno-non-virtual-dtor"
fi
fi
# **************************************************************************
# To test the Mac OS X framework setup on non-Mac systems, run configure
# with the --with-framework option. 20011029 larsa
AC_ARG_WITH([framework],
[ --with-framework Do Mac OS X-like framework installation
--without-framework Do regular installation on Mac OS X],
[sim_ac_framework_name="MAC_FRAMEWORK_NAME_DEFAULT"
case $withval in
yes ) sim_ac_framework=true ;;
no ) sim_ac_framework=false ;;
* ) sim_ac_framework=true; sim_ac_framework_name="$withval" ;;
esac],
[sim_ac_framework_name="MAC_FRAMEWORK_NAME_DEFAULT"
case $host_os in
darwin* ) sim_ac_framework=true ;;
* ) sim_ac_framework=false ;;
esac])
# don't allow name to be overridden - just toggled on/off
sim_ac_framework_name="MAC_FRAMEWORK_NAME_DEFAULT"
AC_ARG_WITH([framework-prefix],
[ --with-framework-prefix=<path> (default: "MAC_FRAMEWORK_PREFIX_DEFAULT")],
[sim_ac_framework_prefix="$withval"
if test x"$sim_ac_framework_prefix" = x""; then
sim_ac_framework_prefix=\${prefix}
fi],
[sim_ac_framework_prefix="MAC_FRAMEWORK_PREFIX_DEFAULT"])
# don't allow version to be overridden
# AC_ARG_WITH([framework-version],
# [ --with-framework-version=<version> (default: "MAC_FRAMEWORK_VERSION_DEFAULT")],
# [sim_ac_framework_version="$withval"],
# [sim_ac_framework_version="MAC_FRAMEWORK_VERSION_DEFAULT"])
sim_ac_framework_version="MAC_FRAMEWORK_VERSION_DEFAULT"
frameworkdir=
ivframeworkdir=
# we don't allow SoQt as framework if Coin isn't installed as a framework
if $sim_ac_framework && $sim_ac_coin_desired && $sim_ac_coin_avail; then
if test x"$CONFIG" != x"set"; then
sim_ac_coin_frameworkdir=`$sim_ac_coin_configcmd --alternate=$CONFIG --frameworkdir 2>/dev/null`
fi
# FIXME: if the Coin detection/setup macro triggers on --alternate=$CONFIG,
# we shouldn't fallback here :( 20020110 larsa
if test x"$sim_ac_coin_frameworkdir" = x""; then
sim_ac_coin_frameworkdir=`$sim_ac_coin_configcmd --frameworkdir 2>/dev/null`
fi
if test x"$sim_ac_coin_frameworkdir" = x""; then
SIM_AC_CONFIGURATION_WARNING([Coin was not installed as a framework, so SoQt can't be either (option was disabled).])
sim_ac_framework=false
soguiincludedir=${includedir}
ivincludedir=
else
ivframeworkdir=$sim_ac_coin_frameworkdir
ivincludedir=
if test x"$ivframeworkdir" != x""; then
ivincludedir=$ivframeworkdir/Headers
# Inventor.framework and SoQt.framework must be in the same location
ivframeworkprefix=`dirname "${ivframeworkdir}"`
if test x"${sim_ac_framework_prefix}" != x"\${prefix}" && \
test x"${ivframeworkprefix}" != x"${sim_ac_framework_prefix}"; then
SIM_AC_CONFIGURATION_WARNING([SoQt.framework must be installed in the same location as Inventor.framework. Changed SoQt framework directory to ${ivframeworkprefix}.])
sim_ac_framework_prefix=${ivframeworkprefix}
fi
fi
frameworkdir=${sim_ac_framework_prefix}/${sim_ac_framework_name}.framework
soguiincludedir="${ivframeworkdir}/Resources/include"
fi
else
sim_ac_framework=false
soguiincludedir=${includedir}
ivincludedir=
fi
AC_SUBST([ivframeworkdir])
AC_SUBST([frameworkdir])
AC_SUBST([ivincludedir])
AC_SUBST([soguiincludedir])
AC_SUBST([MAC_FRAMEWORK], [$sim_ac_framework])
AC_SUBST([MAC_FRAMEWORK_NAME], [$sim_ac_framework_name])
AC_SUBST([MAC_FRAMEWORK_PREFIX], [$sim_ac_framework_prefix])
AC_SUBST([MAC_FRAMEWORK_VERSION], [$sim_ac_framework_version])
AC_SUBST([nop], [])
AM_CONDITIONAL([MAC_FRAMEWORK], [$sim_ac_framework])
AM_CONDITIONAL([MAC_FRAMEWORK], [$sim_ac_framework])
AM_CONDITIONAL([MACOSX], [$sim_ac_macosx])
AM_CONDITIONAL([MACOSX_10_2FF], [$sim_ac_macosx_10_2ff])
# for sub-configure in data/
export sim_ac_framework
export MAC_FRAMEWORK_NAME MAC_FRAMEWORK_PREFIX MAC_FRAMEWORK_VERSION
# **************************************************************************
# Qt's moc wants Windows-style paths, so if the inputfile is an
# absolute Cygwin-style path it needs conversion.
#
# FIXME: code duplicated in SoGuiExamples's configure, should share code.
# 20031017 mortene.
AC_PATH_PROG(UNIX2WINPATH, cygpath, false)
if test x"$UNIX2WINPATH" = x"false"; then
UNIX2WINPATH="echo"
else
UNIX2WINPATH="CYGWIN= $UNIX2WINPATH -w"
fi
AC_SUBST([UNIX2WINPATH])
# **************************************************************************
# Variable substitutions for using libSoQt in the generic code.
AC_SUBST([Gui], [Qt])
AC_SUBST([gui], [qt])
AC_SUBST([GUI], [QT])
AC_SUBST([WIDGET], ["QWidget *"])
AC_SUBST([EVENT], ["QEvent *"])
AC_SUBST([COMPONENTHEADER], [Q_OBJECT])
case $host_os in
darwin*)
SOGUI_EXTRA_LDFLAGS="$SOGUI_EXTRA_LDFLAGS -Wl,-multiply_defined,suppress"
;;
esac
# **************************************************************************
AC_SUBST([soqt_build_dir])
AC_SUBST([soqt_w32_build_dir])
AC_SUBST([soqt_src_dir])
AC_SUBST([soqt_w32_src_dir])
# **************************************************************************
# Remove redundant options from certain option lists.
SIM_AC_UNIQIFY_LIST(SOGUI_EXTRA_CPPFLAGS, -I$includedir $SOGUI_EXTRA_CPPFLAGS)
SIM_AC_UNIQIFY_LIST(SOGUI_EXTRA_LDFLAGS, -L$libdir $SOGUI_EXTRA_LDFLAGS)
SIM_AC_UNIQIFY_LIST(SOGUI_EXTRA_LIBS, $SOGUI_EXTRA_LIBS)
SIM_AC_UNIQIFY_LIST(CPPFLAGS, $CPPFLAGS)
SIM_AC_UNIQIFY_LIST(LDFLAGS, $LDFLAGS)
SIM_AC_UNIQIFY_LIST(LIBS, $LIBS)
# **************************************************************************
# Remove gcc system directories includes from the CPPFLAGS.
CPP_AC_SEARCH_ORDER_FILTER(CPPFLAGS, $CPPFLAGS)
CPP_AC_SEARCH_ORDER_FILTER(SOGUI_EXTRA_CPPFLAGS, $SOGUI_EXTRA_CPPFLAGS)
AC_SUBST([LIBFLAGS], [])
# **************************************************************************
# Remaining setup based on platform.
# check if compiler/linker handles __declspec()
sim_ac_win32_declspec_available=false
AC_MSG_CHECKING([for __declspec() support])
AC_TRY_LINK(
[],
[__declspec(dllimport) int foo;],
[sim_ac_win32_declspec_available=true
AC_MSG_RESULT([available])],
[AC_MSG_RESULT([not available])])
if $sim_ac_win32_declspec_available; then
if $SOQT_STATIC; then
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS -DSOQT_NOT_DLL"
else
CPPFLAGS="-DSOQT_MAKE_DLL $CPPFLAGS"
SOGUI_EXTRA_CPPFLAGS="$SOGUI_EXTRA_CPPFLAGS -DSOQT_DLL"
fi
fi
AM_CONDITIONAL([BUILD_WITH_MSVC], [$BUILD_WITH_MSVC])
# **************************************************************************
CFLAGS="$CFLAGS $sim_ac_compiler_CFLAGS"
CXXFLAGS="$CXXFLAGS $sim_ac_compiler_CXXFLAGS"
# **************************************************************************
if $BUILD_WITH_MSVC; then
rm -f vc60.pdb
## Ensure that if we link with Coin, we use the same C library as Coin
if test x"$sim_ac_coin_msvcrt" != x"" &&
test x"$sim_ac_msvcrt" != x"$sim_ac_coin_msvcrt"; then
SIM_AC_CONFIGURATION_WARNING([You have built Coin with the $sim_ac_coin_msvcrt C library, while you try to build So$Gui with the $sim_ac_msvcrt C library. This can cause mysterious crashes for you. We recommend that you run So$Gui's configure script with the --with-msvcrt=$sim_ac_coin_msvcrt option.])
fi
LIBFLAGS="$LIBFLAGS $sim_ac_msvcrt_LIBLDFLAGS"
LIBS="$LIBS $sim_ac_msvcrt_LIBLIBS"
debugfile="`pwd`/src/Inventor/Qt/soqt${SOQT_MAJOR_VERSION}${SUFFIX}.pdb"
debugfile=`cygpath -w "$debugfile" | sed 's,\\\\,\\\\\\\\,g'`
if $SOQT_STATIC; then
if $sim_ac_make_dsp; then :; else
SIM_AC_CONFIGURATION_SETTING([SoQt build type], [static .lib])
fi
LIBFLAGS="-LIB $LIBFLAGS"
LIBFLAGS="$LIBFLAGS /OUT:soqt$SOQT_MAJOR_VERSION$SUFFIX.lib"
else
LIBFLAGS="-DLL /INCREMENTAL:NO $LIBFLAGS"
case $enable_symbols in
no | false)
LIBFLAGS="$LIBFLAGS /RELEASE"
if $sim_ac_make_dsp; then :; else
SIM_AC_CONFIGURATION_SETTING([SoQt build type],
[dynamic .dll, no symbols])
fi
;;
*)
SIM_AC_CONFIGURATION_SETTING([SoQt build type], [dynamic .dll + .pdb])
CPPFLAGS="/Fd$debugfile $CPPFLAGS"
LIBFLAGS="$LIBFLAGS /DEBUG /PDB:soqt$SOQT_MAJOR_VERSION$SUFFIX.pdb"
;;
esac
LIBFLAGS="$LIBFLAGS /OUT:soqt$SOQT_MAJOR_VERSION$SUFFIX.dll"
fi
# We use a version suffix on the .dll-file, so several incompatible