Hi Ariel,
Ariel Constenla-Haile schrieb:
On Sun, Sep 23, 2012 at 04:27:22PM +0200, Regina Henschel wrote:
Hi Ariel,
Ariel Constenla-Haile schrieb:
On Sun, Sep 23, 2012 at 04:04:23PM +0200, Regina Henschel wrote:
Hi Ariel,
should there be "ATL_LIB=" line in winenv.set.sh now?
I ask, because there are still none of the four, but they are listed
in part "unset".
If ATL/MFC is detected, they should be set right after DIRECTXSDK_LIB:
DIRECTXSDK_LIB="C:/ARCHIV~1/MI599E~1/lib/x86"
ATL_LIB="C:/ARCHIV~1/MICROS~1.0/VC/atlmfc/lib"
ATL_INCLUDE="C:/ARCHIV~1/MICROS~1.0/VC/atlmfc/include"
HAVE_ATLTHUNK="NO"
MFC_LIB="C:/ARCHIV~1/MICROS~1.0/VC/atlmfc/lib"
MFC_INCLUDE="C:/ARCHIV~1/MICROS~1.0/VC/atlmfc/include"
Is ATL/MFC detected at all? Please post the output of configure after
checking for DirectX SDK files... found
checking for ATL and MFC... configure: testing ATL/MFC libs and includes
No, I get
checking for DirectX SDK files... found
checking for ATL and MFC... ATL/MFC disabled
Did you run autoconf?
Yes, for each try.
I had also used the kind
--with-atl-include-dir="/cygdrive/c/WinDDK/7600.16385.1/inc/atl71" \
instead of
--with-atl-include-dir="C:/WinDDK/7600.16385.1/inc/atl71" \
That makes no difference.
If you look at configure.in ca. line 5747, where the check start:
dnl ============================================
dnl Check for ATL and MFC
dnl ============================================
It looks like you don't pass the first check:
if test \( "$_os" = "WINNT" \) ; then
AC_MSG_CHECKING([for ATL and MFC])
you pass this check, but not the following:
if test "$DISABLE_ATL" = "TRUE" -o "$DISABLE_ACTIVEX" = "TRUE" ; then
AC_MSG_RESULT([ATL/MFC disabled])
because in all further checks I added some AC_MSG_NOTICE that should
tell you where the error is. Looks like you have ATL or ActiveX
disabled, or this check isn't working at all.
Yes I had
--disable-activex \
I have removed it now, and now I get in winenv.set.sh the lines
DIRECTXSDK_LIB="C:/PROGRA~1/MIAF9D~2/lib/x86"
ATL_LIB="C:/WinDDK/760016~1.1/lib/ATL/i386"
ATL_INCLUDE="C:/WinDDK/760016~1.1/inc/atl71"
HAVE_ATLTHUNK="YES"
MFC_LIB="C:/WinDDK/760016~1.1/lib/Mfc/i386"
MFC_INCLUDE="C:/WinDDK/760016~1.1/inc/mfc42"
NSIS_PATH="C:/PROGRA~1/NSIS"
Kind regards
Regina