"error: expected unqualified-id before '.'" Compiling C++ App with OpenSSL Libraries

Gedalya

When attempting to compile code which uses the OpenSSL libraries I receive the following error:

In file included from util.h:28:0,
             from addrman.h:9,
             from addrman.cpp:5:
c:/local/openssl-0.9.8za/include/openssl/sha.h:1:1: error: expected unqualified-id before '.' token
../../crypto/sha/sha.h

The file listed has the following line of code in it (and this is the only line of code):

../../crypto/sha/sha.h

Can anyone provide any feedback on this problem? I have referenced the OpenSSL libraries in the Netbeans project.

n. 'pronouns' m.

You probably have a cygwin-built OpenSSL install that you are trying to use outside of cygwin.

Windows has no symbolic links, cygwin simulates them with regular text files. Windows programs do not consider these files symbolic links.

If you want to keep using your OpenSSL install, replace its "symbolic links" with copies of corresponding regular files.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Error compiling boost C++ libraries 1.54

From Dev

Compiling C code that uses R libraries in Netbeans

From Dev

Using the OpenSSL libraries built from source in an OS X app

From Dev

Compiling Boost C++ libraries on VS2012 project

From Dev

Compiling OpenSSL on Android

From Dev

Cross compiling with shared dynamic libraries

From Dev

Compiling FFMpeg libraries for Visual Studio

From Dev

Installing ICU libraries and compiling program

From Dev

compiling curl with openssl giving wrong openssl version

From Dev

Compiling OpenSSL with Dynamic Zlib in Windows

From Dev

Cross compiling MongoDB C++ driver for ARM. Cannot find Boost Libraries

From Dev

Need help understanding C++ libraries, compiling, linking, header files for specific project

From Dev

Compiling and linking multiple C libraries (stuck at symbol(s) not found for architecture x86_64)

From Dev

Compiling and linking third party libraries in VS 2015

From Dev

How to work with external libraries when cross compiling?

From Dev

Android NDK : Compiling different libraries for different architectures

From Dev

CMake: CUDA libraries not found when compiling OpenCV

From Dev

Compiling TCL libraries with TCL_MEM_DEBUG

From Dev

Troubles with compiling, static initialization and static libraries

From Dev

Compiling ffmpeg for windows with WebM libraries using Cygwin

From Dev

Compiling my CUDA program with libraries provided in toolkit

From Dev

Compiling Node.js with OpenSSL support

From Dev

Coredump when compiling python with a custom openssl version

From Dev

Error 'Could NOT find OpenSSL' in compiling ownCloud client

From Dev

Coredump when compiling python with a custom openssl version

From Dev

Missing cipher suites when compiling OpenSSL on Windows

From Dev

Error 'Could NOT find OpenSSL' in compiling ownCloud client

From Dev

Compiling an iOS App on iOS

From Dev

Compiling an iOS App on iOS

Related Related

  1. 1

    Error compiling boost C++ libraries 1.54

  2. 2

    Compiling C code that uses R libraries in Netbeans

  3. 3

    Using the OpenSSL libraries built from source in an OS X app

  4. 4

    Compiling Boost C++ libraries on VS2012 project

  5. 5

    Compiling OpenSSL on Android

  6. 6

    Cross compiling with shared dynamic libraries

  7. 7

    Compiling FFMpeg libraries for Visual Studio

  8. 8

    Installing ICU libraries and compiling program

  9. 9

    compiling curl with openssl giving wrong openssl version

  10. 10

    Compiling OpenSSL with Dynamic Zlib in Windows

  11. 11

    Cross compiling MongoDB C++ driver for ARM. Cannot find Boost Libraries

  12. 12

    Need help understanding C++ libraries, compiling, linking, header files for specific project

  13. 13

    Compiling and linking multiple C libraries (stuck at symbol(s) not found for architecture x86_64)

  14. 14

    Compiling and linking third party libraries in VS 2015

  15. 15

    How to work with external libraries when cross compiling?

  16. 16

    Android NDK : Compiling different libraries for different architectures

  17. 17

    CMake: CUDA libraries not found when compiling OpenCV

  18. 18

    Compiling TCL libraries with TCL_MEM_DEBUG

  19. 19

    Troubles with compiling, static initialization and static libraries

  20. 20

    Compiling ffmpeg for windows with WebM libraries using Cygwin

  21. 21

    Compiling my CUDA program with libraries provided in toolkit

  22. 22

    Compiling Node.js with OpenSSL support

  23. 23

    Coredump when compiling python with a custom openssl version

  24. 24

    Error 'Could NOT find OpenSSL' in compiling ownCloud client

  25. 25

    Coredump when compiling python with a custom openssl version

  26. 26

    Missing cipher suites when compiling OpenSSL on Windows

  27. 27

    Error 'Could NOT find OpenSSL' in compiling ownCloud client

  28. 28

    Compiling an iOS App on iOS

  29. 29

    Compiling an iOS App on iOS

HotTag

Archive