Displaying 2 results from an estimated 2 matches for "ogg_library".
Did you mean:
log_library
2017 May 29
0
[PATCH] Add CMake build script
...Config QUIET)
+pkg_check_modules(PC_OGG QUIET ogg)
+
+find_path(OGG_INCLUDE_DIR ogg/ogg.h HINTS ${PC_OGG_INCLUDEDIR} ${PC_OGG_INCLUDE_DIRS} ${OGG_ROOT} PATH_SUFFIXES include)
+# MSVC built ogg may be named ogg_static.
+# The provided project files name the library with the lib prefix.
+find_library(OGG_LIBRARY NAMES ogg ogg_static libogg libogg_static HINTS ${PC_OGG_LIBDIR} ${PC_OGG_LIBRARY_DIRS} ${OGG_ROOT} PATH_SUFFIXES lib)
+# Handle the QUIETLY and REQUIRED arguments and set OGG_FOUND
+# to TRUE if all listed variables are TRUE.
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_ar...
2004 Feb 18
5
compiling vorbis in cygwin
Hi,
On compiling vorbis in a cygwin shell using "./autogen.sh" I get the
following error...
configure:19396: checking for Ogg
configure:19431: gcc -o conftest.exe -O20 -D__NO_MATH_INLINES -fsigned-char
-DUSE_MEMORY_H conftest.c -lm -logg >&5
/usr/lib/gcc-lib/i686-pc-cygwin/3.3.1/../../../../i686-pc-cygwin/bin/ld:
cannot find -logg
collect2: ld returned 1 exit status
The