{"id":2019,"date":"2015-03-13T16:52:36","date_gmt":"2015-03-13T15:52:36","guid":{"rendered":"https:\/\/ridgesolutions.ie\/?p=2019"},"modified":"2015-03-16T16:48:47","modified_gmt":"2015-03-16T15:48:47","slug":"build-libexif-for-windows-and-visual-studio","status":"publish","type":"post","link":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/","title":{"rendered":"Build libexif for Windows and Visual Studio"},"content":{"rendered":"<p>This is a record of how to build \/ compile libexif (v0.6.21) binaries for windows.  It is another entry in a Software Engineer&#8217;s daily &#8216;trial log&#8217;, however this time thanks to the excellent MinGW32 and the well written libexif things went rather well!<\/p>\n<p><a href=\"https:\/\/github.com\/telegramdesktop\/libexif-0.6.20\/blob\/master\/README-Win32.txt\">This<\/a> readme says that you have 2 options, either hack together a project in Visual Studio to build the library or use <a href=\"http:\/\/www.mingw.org\/\">MinGW32<\/a> to build it.<\/p>\n<p>I tried the first option, but the main problem is that poor old Visual Studio can&#8217;t handle some of the more modern standard C (C99) constructs that libexif uses (e.g. the inline keyword).<\/p>\n<p>So that left the MinGW route which is detailed here:<\/p>\n<p>1.) Install MinGW32 onto your windows machine if you don&#8217;t already have it. <a href=\"http:\/\/blog.florianwolters.de\/\">Florian Wolters<\/a> has a good description of how to do this <a href=\"http:\/\/blog.florianwolters.de\/educational\/2013\/11\/21\/Installing-MinGW\/\">here<\/a> (thanks!).<\/p>\n<p>I found it vital to put the path to WinGW32&#8217;s bin directory at the beginning of my system PATH variable, not at the end! Check that MinGW32 is working ok by trying Florian&#8217;s little test program.<\/p>\n<p>2.) Get the libexif source <a href=\"http:\/\/sourceforge.net\/projects\/libexif\/files\/libexif\/0.6.21\/\">here<\/a>.  Extract it to somewhere.<\/p>\n<p>3.) Open a windows console window (CMD), don&#8217;t use GitBash or anything, just cmd.exe, <strong>cd<\/strong> into the extracted libexif folder.  I used GitBash at the begining but was getting make errors, it turned out that some of GitBash&#8217;s tools were conflicting with MinGW&#8217;s tools.<\/p>\n<p>4.) Make libexif by issuing the following commands:<\/p>\n<pre>\r\n#\r\nsh .\/configure --prefix=\/tmp\/install_libexif\r\nmake\r\nmake install\r\n#\r\n<\/pre>\n<p>Now during make, you may get an error like this:<\/p>\n<p><strong>libtool: link: cannot find the library `\/home\/keith\/staged\/mingw32\/lib\/libiconv.&#8217;<\/strong><\/p>\n<p>If this happens, go to your MinGW lib directory (e.g. C:\\MinGW\\lib) and delete this file:<\/p>\n<p><strong>libintl.la<\/strong><\/p>\n<p>And try running make again, if you continue to get the above error, then the advice out there us to delete any files with &#8216;keith&#8217; in them, but luckily I didn&#8217;t have to.<\/p>\n<p>If make &#038; make install succeed, you should then see the install directories in \/tmp, which you can access using MS explorer in your MinGW\\msys directory:<\/p>\n<p>e.g. maybe in C:\\MinGW\\msys\\1.0\\tmp<\/p>\n<p>Thankfully that all worked for me, I was then able to link to the libexif libraries from a Visual Studio 2012 C++ project.  The only gotcha I found is that when freeing the <strong>char*<\/strong> buffer allocated during a call to exif_data_save_data(), I found it important not to use free() but to use libexif&#8217;s own memory deallacator like this:<\/p>\n<pre>\r\n\/\/ \r\n   unsigned char *exif_data;\r\n    \r\n    \/* Get a pointer to the EXIF data block we just created *\/\r\n    exif_data_save_data(exif, &exif_data, &exif_data_len);\r\n\r\n    \/\/ Use exif_data here, save it to file etc..\r\n\r\n    \/\/ Now we want to free this memory\r\n    \/\/ don't  do this, we will get a heap error:\r\n    \/\/ free(exif_data) \r\n\r\n    \/\/ instead can do this (as long as you used\r\n    \/\/ the default mem allocator earlier in your\r\n    \/\/ code):\r\n    ExifMem *mem = exif_mem_new_default();\r\n    exif_mem_free(mem, exif_data);\r\n\/\/\r\n<\/pre>\n<p>This is probably due to my test application using a different malloc() to the lib.<\/p>\n<p>To link to libEXIF from visual studio you can directly add <strong>libexif.dll.a<\/strong> to Properties \/ Linker \/ Input \/ Additional Dependencies and then just make sure that <strong>libexif-12.dll<\/strong> is somewhere on the execution path.<\/p>\n<p>If you don&#8217;t fancy all of this hassle the library binaries can be downloaded from <a href=\"https:\/\/ridgesolutions.ie\/index.php\/2015\/03\/13\/libexif-binaries-for-windows-and-visual-studio\/\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This is a record of how to build \/ compile libexif (v0.6.21) binaries for windows. It is another entry in a Software Engineer&#8217;s daily &#8216;trial log&#8217;, however this time thanks to the excellent MinGW32 and the well written libexif things went rather well! This readme says that you have 2 options, either hack together a [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[354,350,353,91,222],"class_list":["post-2019","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-compile","tag-exif","tag-libexif","tag-visual-studio","tag-windows"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"This is a record of how to build \/ compile libexif (v0.6.21) binaries for windows. It is another entry in a Software Engineer&#039;s daily &#039;trial log&#039;, however this time thanks to the excellent MinGW32 and the well written libexif things went rather well! This readme says that you have 2 options, either hack together a\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kevin Godden\"\/>\n\t<meta name=\"google-site-verification\" content=\"Kyj52YLp6GOPA44PVBffo9fjW8rgWHYYRF0ZYjfy6ss\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Systems and Embedded Software Engineering, Ireland. | Some thoughts of a busy Computer Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Build libexif for Windows and Visual Studio\" \/>\n\t\t<meta property=\"og:description\" content=\"This is a record of how to build \/ compile libexif (v0.6.21) binaries for windows. It is another entry in a Software Engineer&#039;s daily &#039;trial log&#039;, however this time thanks to the excellent MinGW32 and the well written libexif things went rather well! This readme says that you have 2 options, either hack together a\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-03-13T15:52:36+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-03-16T15:48:47+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Build libexif for Windows and Visual Studio\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This is a record of how to build \/ compile libexif (v0.6.21) binaries for windows. It is another entry in a Software Engineer&#039;s daily &#039;trial log&#039;, however this time thanks to the excellent MinGW32 and the well written libexif things went rather well! This readme says that you have 2 options, either hack together a\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#article\",\"name\":\"Build libexif for Windows and Visual Studio\",\"headline\":\"Build libexif for Windows and Visual Studio\",\"author\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/wp-content\\\/uploads\\\/2013\\\/09\\\/ridge_logo1.jpg\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#articleImage\",\"width\":400,\"height\":81},\"datePublished\":\"2015-03-13T16:52:36+00:00\",\"dateModified\":\"2015-03-16T16:48:47+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#webpage\"},\"articleSection\":\"Uncategorized, compile, exif, libexif, Visual Studio, windows\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ridgesolutions.ie\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/uncategorized\\\/#listItem\",\"position\":2,\"name\":\"Uncategorized\",\"item\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/uncategorized\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#listItem\",\"name\":\"Build libexif for Windows and Visual Studio\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#listItem\",\"position\":3,\"name\":\"Build libexif for Windows and Visual Studio\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#organization\",\"name\":\"Ridge Solutions, Software Development and Software Engineering, Ireland.\",\"description\":\"Some thoughts of a busy Computer Engineer\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/wp-content\\\/uploads\\\/2013\\\/09\\\/ridge_logo1.jpg\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#organizationLogo\",\"width\":400,\"height\":81},\"image\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/\",\"name\":\"Kevin Godden\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d2833f41e59a25cf2a9741a05ec383bfdd278762a5e0798a90940e7ab0a107a2?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kevin Godden\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#webpage\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/\",\"name\":\"Build libexif for Windows and Visual Studio\",\"description\":\"This is a record of how to build \\\/ compile libexif (v0.6.21) binaries for windows. It is another entry in a Software Engineer's daily 'trial log', however this time thanks to the excellent MinGW32 and the well written libexif things went rather well! This readme says that you have 2 options, either hack together a\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2015\\\/03\\\/13\\\/build-libexif-for-windows-and-visual-studio\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"datePublished\":\"2015-03-13T16:52:36+00:00\",\"dateModified\":\"2015-03-16T16:48:47+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#website\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/\",\"name\":\"Ridge Solutions, Software Development and Software Engineering, Ireland.\",\"description\":\"Some thoughts of a busy Computer Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Build libexif for Windows and Visual Studio","description":"This is a record of how to build \/ compile libexif (v0.6.21) binaries for windows. It is another entry in a Software Engineer's daily 'trial log', however this time thanks to the excellent MinGW32 and the well written libexif things went rather well! This readme says that you have 2 options, either hack together a","canonical_url":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"Kyj52YLp6GOPA44PVBffo9fjW8rgWHYYRF0ZYjfy6ss","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#article","name":"Build libexif for Windows and Visual Studio","headline":"Build libexif for Windows and Visual Studio","author":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"publisher":{"@id":"https:\/\/www.ridgesolutions.ie\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ridgesolutions.ie\/wp-content\/uploads\/2013\/09\/ridge_logo1.jpg","@id":"https:\/\/www.ridgesolutions.ie\/#articleImage","width":400,"height":81},"datePublished":"2015-03-13T16:52:36+00:00","dateModified":"2015-03-16T16:48:47+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#webpage"},"isPartOf":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#webpage"},"articleSection":"Uncategorized, compile, exif, libexif, Visual Studio, windows"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie#listItem","position":1,"name":"Home","item":"https:\/\/www.ridgesolutions.ie","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/#listItem","name":"Uncategorized"}},{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/#listItem","position":2,"name":"Uncategorized","item":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#listItem","name":"Build libexif for Windows and Visual Studio"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#listItem","position":3,"name":"Build libexif for Windows and Visual Studio","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/#listItem","name":"Uncategorized"}}]},{"@type":"Organization","@id":"https:\/\/www.ridgesolutions.ie\/#organization","name":"Ridge Solutions, Software Development and Software Engineering, Ireland.","description":"Some thoughts of a busy Computer Engineer","url":"https:\/\/www.ridgesolutions.ie\/","logo":{"@type":"ImageObject","url":"https:\/\/www.ridgesolutions.ie\/wp-content\/uploads\/2013\/09\/ridge_logo1.jpg","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#organizationLogo","width":400,"height":81},"image":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author","url":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/","name":"Kevin Godden","image":{"@type":"ImageObject","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d2833f41e59a25cf2a9741a05ec383bfdd278762a5e0798a90940e7ab0a107a2?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kevin Godden"}},{"@type":"WebPage","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#webpage","url":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/","name":"Build libexif for Windows and Visual Studio","description":"This is a record of how to build \/ compile libexif (v0.6.21) binaries for windows. It is another entry in a Software Engineer's daily 'trial log', however this time thanks to the excellent MinGW32 and the well written libexif things went rather well! This readme says that you have 2 options, either hack together a","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.ridgesolutions.ie\/#website"},"breadcrumb":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/#breadcrumblist"},"author":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"creator":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"datePublished":"2015-03-13T16:52:36+00:00","dateModified":"2015-03-16T16:48:47+00:00"},{"@type":"WebSite","@id":"https:\/\/www.ridgesolutions.ie\/#website","url":"https:\/\/www.ridgesolutions.ie\/","name":"Ridge Solutions, Software Development and Software Engineering, Ireland.","description":"Some thoughts of a busy Computer Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.ridgesolutions.ie\/#organization"}}]},"og:locale":"en_US","og:site_name":"Systems and Embedded Software Engineering, Ireland. | Some thoughts of a busy Computer Engineer","og:type":"article","og:title":"Build libexif for Windows and Visual Studio","og:description":"This is a record of how to build \/ compile libexif (v0.6.21) binaries for windows. It is another entry in a Software Engineer's daily 'trial log', however this time thanks to the excellent MinGW32 and the well written libexif things went rather well! This readme says that you have 2 options, either hack together a","og:url":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/","article:published_time":"2015-03-13T15:52:36+00:00","article:modified_time":"2015-03-16T15:48:47+00:00","twitter:card":"summary","twitter:title":"Build libexif for Windows and Visual Studio","twitter:description":"This is a record of how to build \/ compile libexif (v0.6.21) binaries for windows. It is another entry in a Software Engineer's daily 'trial log', however this time thanks to the excellent MinGW32 and the well written libexif things went rather well! This readme says that you have 2 options, either hack together a"},"aioseo_meta_data":{"post_id":"2019","title":null,"description":null,"keywords":[{"label":"libexif","value":"libexif"},{"label":"binaries","value":"binaries"},{"label":"compile","value":"compile"},{"label":"build","value":"build"},{"label":"windows","value":"windows"},{"label":"visual studio","value":"visual studio"},{"label":"software","value":"software"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-09-13 21:17:11","updated":"2025-07-15 22:55:57","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.ridgesolutions.ie\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/\" title=\"Uncategorized\">Uncategorized<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tBuild libexif for Windows and Visual Studio\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.ridgesolutions.ie"},{"label":"Uncategorized","link":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/"},{"label":"Build libexif for Windows and Visual Studio","link":"https:\/\/www.ridgesolutions.ie\/index.php\/2015\/03\/13\/build-libexif-for-windows-and-visual-studio\/"}],"_links":{"self":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts\/2019","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/comments?post=2019"}],"version-history":[{"count":0,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts\/2019\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/media?parent=2019"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/categories?post=2019"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/tags?post=2019"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}