]> granicus.if.org Git - curl/commitdiff
Added an examples section with examples I made up for the web page
authorDaniel Stenberg <daniel@haxx.se>
Fri, 20 Apr 2001 14:45:15 +0000 (14:45 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 20 Apr 2001 14:45:15 +0000 (14:45 +0000)
docs/curl-config.1

index 812edf71e2997ecf4607781bae287901d40630bf..c375379611d08ab6688d4ecb7392135b15a2fdb2 100644 (file)
@@ -30,5 +30,25 @@ in $prefix/lib and its header files are installed in $prefix/include and so
 on. The prefix is set with "configure --prefix".
 .IP "--version"
 Outputs version information about the installed libcurl.
+.SH "EXAMPLES"
+What is the path to the curl header files?
+
+  echo `curl-config --prefix`/include
+
+What is the path to libcurl?
+
+  echo `curl-config --prefix`/lib
+
+What other linker options do I need when I link with libcurl?
+
+  curl-config --libs
+
+How do I know if libcurl was built with SSL support?
+
+  curl-config --feature | grep SSL
+
+What's the installed libcurl version?
+
+  curl-config --version
 .SH "SEE ALSO"
 .BR curl (1)