Check-in [ca59fe571c]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add include dir for Xmu on hpux.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: ca59fe571c0368daccad4bffb9288ef59ebb0bcc
User & Date: stu 2012-10-10 22:45:55
Context
2014-10-19
06:52
Add Xmu/WinUtil.h detection. check-in: fc6bc46b69 user: stu tags: trunk
2012-10-10
22:45
Add include dir for Xmu on hpux. check-in: ca59fe571c user: stu tags: trunk
2012-09-26
22:12
XKeycodeToKeysym -> XkbKeycodeToKeysym check-in: cb125f8182 user: stu tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to configure.

9685
9686
9687
9688
9689
9690
9691


















9692
9693
9694
9695
9696
9697
9698


$as_echo "#define USE_TCL_STUBS 1" >>confdefs.h


$as_echo "#define USE_TK_STUBS 1" >>confdefs.h




















#--------------------------------------------------------------------
# This macro generates a line to use when building a library.  It
# depends on values set by the TEA_ENABLE_SHARED, TEA_ENABLE_SYMBOLS,
# and TEA_LOAD_TCLCONFIG macros above.
#--------------------------------------------------------------------








>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







9685
9686
9687
9688
9689
9690
9691
9692
9693
9694
9695
9696
9697
9698
9699
9700
9701
9702
9703
9704
9705
9706
9707
9708
9709
9710
9711
9712
9713
9714
9715
9716


$as_echo "#define USE_TCL_STUBS 1" >>confdefs.h


$as_echo "#define USE_TK_STUBS 1" >>confdefs.h


#--------------------------------------------------------------------
# Special bits for special OS's.
# Must be done after TEA_CONFIG_CFLAGS, to obtain the variable $system.
# Should be done before TEA_MAKE_LIB, since TEA_MAKE_LIB does weird things.
#--------------------------------------------------------------------

case $system in
    HP-UX-*.11.*)

    vars="-I/usr/contrib/X11R6/include"
    for i in $vars; do
	PKG_INCLUDES="$PKG_INCLUDES $i"
    done


    ;;
esac

#--------------------------------------------------------------------
# This macro generates a line to use when building a library.  It
# depends on values set by the TEA_ENABLE_SHARED, TEA_ENABLE_SYMBOLS,
# and TEA_LOAD_TCLCONFIG macros above.
#--------------------------------------------------------------------

Changes to configure.in.

170
171
172
173
174
175
176












177
178
179
180
181
182
183
# can't for some reason, remove this definition.  If you aren't using
# stubs, you also need to modify the SHLIB_LD_LIBS setting below to
# link against the non-stubbed Tcl library.  Add Tk too if necessary.
#--------------------------------------------------------------------

AC_DEFINE(USE_TCL_STUBS, 1, [Use Tcl stubs])
AC_DEFINE(USE_TK_STUBS, 1, [Use Tk stubs])













#--------------------------------------------------------------------
# This macro generates a line to use when building a library.  It
# depends on values set by the TEA_ENABLE_SHARED, TEA_ENABLE_SYMBOLS,
# and TEA_LOAD_TCLCONFIG macros above.
#--------------------------------------------------------------------








>
>
>
>
>
>
>
>
>
>
>
>







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
# can't for some reason, remove this definition.  If you aren't using
# stubs, you also need to modify the SHLIB_LD_LIBS setting below to
# link against the non-stubbed Tcl library.  Add Tk too if necessary.
#--------------------------------------------------------------------

AC_DEFINE(USE_TCL_STUBS, 1, [Use Tcl stubs])
AC_DEFINE(USE_TK_STUBS, 1, [Use Tk stubs])

#--------------------------------------------------------------------
# Special bits for special OS's.
# Must be done after TEA_CONFIG_CFLAGS, to obtain the variable $system.
# Should be done before TEA_MAKE_LIB, since TEA_MAKE_LIB does weird things.
#--------------------------------------------------------------------

case $system in
    HP-UX-*.11.*)
	TEA_ADD_INCLUDES([-I/usr/contrib/X11R6/include])
    ;;
esac

#--------------------------------------------------------------------
# This macro generates a line to use when building a library.  It
# depends on values set by the TEA_ENABLE_SHARED, TEA_ENABLE_SYMBOLS,
# and TEA_LOAD_TCLCONFIG macros above.
#--------------------------------------------------------------------